aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
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
commit0c6ff43a0cfa48e196954010787f5335f1a17ad7 (patch)
treeca8593fa25b77f98472bdcdee3781623917cd531 /include
parentd24d0830616dc6c040caec3466786b6d7120b7b9 (diff)
downloadbusybox-0c6ff43a0cfa48e196954010787f5335f1a17ad7.tar.gz
remove #undef strlen, use #define strlen always but without xfunc/BB_STRLEN_IMPLEMENTATION
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 8ec1a24c0..9f0c85b03 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -387,7 +387,9 @@ void reset_ino_dev_hashtable(void);
/* Stupid gcc always includes its own builtin strlen()... */
extern size_t bb_strlen(const char *string);
+#ifndef BB_STRLEN_IMPLEMENTATION
#define strlen(x) bb_strlen(x)
+#endif
char *bb_xasprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2)));