From: "Vladimir N. Oleynik" Date: Thu, 16 Feb 2006 14:38:41 +0000 (-0000) Subject: removed #undef strlen, use builtins and prototuped strlen from xfunc file (only\!) X-Git-Tag: 1_1_0~209 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=21e68703ce35805ff8b9590c22a400de05155ac2;p=oweals%2Fbusybox.git removed #undef strlen, use builtins and prototuped strlen from xfunc file (only\!) --- 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) #ifdef L_strlen /* Stupid gcc always includes its own builtin strlen()... */ -#undef strlen size_t bb_strlen(const char *string) { return(strlen(string));