From db7d5fca5f6a98a68a16bbea7cd71593791c43dc Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 13 Apr 2002 13:02:03 +0000 Subject: Stupid gcc always includes its own builtin strlen()... --- include/libbb.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include') diff --git a/include/libbb.h b/include/libbb.h index cf593d65c..40cff8b4b 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -293,4 +293,8 @@ int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name); void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name); void reset_ino_dev_hashtable(void); +/* Stupid gcc always includes its own builtin strlen()... */ +extern size_t xstrlen(const char *string); +#define strlen(x) xstrlen(x) + #endif /* __LIBCONFIG_H__ */ -- cgit v1.2.3