From: Denys Vlasenko Date: Fri, 21 Aug 2009 15:40:36 +0000 (+0200) Subject: fix duplicate FAST_FUNC FAST_FUNC X-Git-Tag: 1_15_0~4 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f2a8d5db9ab1921e4bbe799b767fa2a94a83f228;p=oweals%2Fbusybox.git fix duplicate FAST_FUNC FAST_FUNC Signed-off-by: Denys Vlasenko --- diff --git a/include/libbb.h b/include/libbb.h index 51ac69ed5..c795e6aad 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -393,7 +393,7 @@ void xsetenv(const char *key, const char *value) FAST_FUNC; void bb_unsetenv(const char *key) FAST_FUNC; void xunlink(const char *pathname) FAST_FUNC; void xstat(const char *pathname, struct stat *buf) FAST_FUNC; -int xopen(const char *pathname, int flags) FAST_FUNC FAST_FUNC; +int xopen(const char *pathname, int flags) FAST_FUNC; int xopen3(const char *pathname, int flags, int mode) FAST_FUNC; int open_or_warn(const char *pathname, int flags) FAST_FUNC; int open3_or_warn(const char *pathname, int flags, int mode) FAST_FUNC;