remove #undef strlen, use #define strlen always but without xfunc/BB_STRLEN_IMPLEMENTATION

This commit is contained in:
"Vladimir N. Oleynik"
2006-02-20 12:15:10 +00:00
parent d24d083061
commit 0c6ff43a0c
2 changed files with 9 additions and 3 deletions

View File

@ -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)));