aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
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
commit21e68703ce35805ff8b9590c22a400de05155ac2 (patch)
tree70bda14dffe6755745c9b01043e1fb2d221d4cac /libbb
parentcb9b114d352edbc792f02b3e355e6588221e0488 (diff)
downloadbusybox-21e68703ce35805ff8b9590c22a400de05155ac2.tar.gz
removed #undef strlen, use builtins and prototuped strlen from xfunc file (only\!)
Diffstat (limited to 'libbb')
-rw-r--r--libbb/xfuncs.c1
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)
#ifdef L_strlen
/* Stupid gcc always includes its own builtin strlen()... */
-#undef strlen
size_t bb_strlen(const char *string)
{
return(strlen(string));