aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorvodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-02-16 14:38:41 +0000
committervodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-02-16 14:38:41 +0000
commitd353f302c51b2f326830ca17bd7dcaf6a68b3421 (patch)
tree70bda14dffe6755745c9b01043e1fb2d221d4cac /libbb
parent5255d6f9b333a90fe9082bb2fe667efe1416340b (diff)
downloadbusybox-w32-d353f302c51b2f326830ca17bd7dcaf6a68b3421.tar.gz
busybox-w32-d353f302c51b2f326830ca17bd7dcaf6a68b3421.tar.bz2
busybox-w32-d353f302c51b2f326830ca17bd7dcaf6a68b3421.zip
removed #undef strlen, use builtins and prototuped strlen from xfunc file (only\!)
git-svn-id: svn://busybox.net/trunk/busybox@14077 69ca8d6d-28ef-0310-b511-8ec308f3f277
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)
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
184size_t bb_strlen(const char *string) 183size_t bb_strlen(const char *string)
185{ 184{
186 return(strlen(string)); 185 return(strlen(string));