diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-02-16 14:38:41 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-02-16 14:38:41 +0000 |
commit | 21e68703ce35805ff8b9590c22a400de05155ac2 (patch) | |
tree | 70bda14dffe6755745c9b01043e1fb2d221d4cac /libbb | |
parent | cb9b114d352edbc792f02b3e355e6588221e0488 (diff) | |
download | busybox-w32-21e68703ce35805ff8b9590c22a400de05155ac2.tar.gz busybox-w32-21e68703ce35805ff8b9590c22a400de05155ac2.tar.bz2 busybox-w32-21e68703ce35805ff8b9590c22a400de05155ac2.zip |
removed #undef strlen, use builtins and prototuped strlen from xfunc file (only\!)
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/xfuncs.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index f85d3bb26..134ea77a0 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c | |||
@@ -180,7 +180,6 @@ extern void bb_xfflush_stdout(void) | |||
180 | 180 | ||
181 | #ifdef L_strlen | 181 | #ifdef L_strlen |
182 | /* Stupid gcc always includes its own builtin strlen()... */ | 182 | /* Stupid gcc always includes its own builtin strlen()... */ |
183 | #undef strlen | ||
184 | size_t bb_strlen(const char *string) | 183 | size_t bb_strlen(const char *string) |
185 | { | 184 | { |
186 | return(strlen(string)); | 185 | return(strlen(string)); |