diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-02-20 12:15:10 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-02-20 12:15:10 +0000 |
commit | 0c6ff43a0cfa48e196954010787f5335f1a17ad7 (patch) | |
tree | ca8593fa25b77f98472bdcdee3781623917cd531 /libbb | |
parent | d24d0830616dc6c040caec3466786b6d7120b7b9 (diff) | |
download | busybox-w32-0c6ff43a0cfa48e196954010787f5335f1a17ad7.tar.gz busybox-w32-0c6ff43a0cfa48e196954010787f5335f1a17ad7.tar.bz2 busybox-w32-0c6ff43a0cfa48e196954010787f5335f1a17ad7.zip |
remove #undef strlen, use #define strlen always but without xfunc/BB_STRLEN_IMPLEMENTATION
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/xfuncs.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 69eaf79e0..6d54c1a79 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c | |||
@@ -14,6 +14,13 @@ | |||
14 | #include <stdlib.h> | 14 | #include <stdlib.h> |
15 | #include <unistd.h> | 15 | #include <unistd.h> |
16 | #include <fcntl.h> | 16 | #include <fcntl.h> |
17 | |||
18 | /* Since gcc always inlines strlen(), this saves a byte or two, but we need | ||
19 | * the #undef here to avoid endless loop from #define strlen bb_strlen */ | ||
20 | #ifdef L_strlen | ||
21 | #define BB_STRLEN_IMPLEMENTATION | ||
22 | #endif | ||
23 | |||
17 | #include "libbb.h" | 24 | #include "libbb.h" |
18 | 25 | ||
19 | 26 | ||
@@ -167,9 +174,6 @@ extern void bb_xfflush_stdout(void) | |||
167 | #endif | 174 | #endif |
168 | 175 | ||
169 | #ifdef L_strlen | 176 | #ifdef L_strlen |
170 | /* Since gcc always inlines strlen(), this saves a byte or two, but we need | ||
171 | * the #undef here to avoid endless loop from #define strlen bb_strlen */ | ||
172 | #undef strlen | ||
173 | size_t bb_strlen(const char *string) | 177 | size_t bb_strlen(const char *string) |
174 | { | 178 | { |
175 | return(strlen(string)); | 179 | return(strlen(string)); |