diff options
author | Eric Andersen | 2002-04-13 13:02:03 +0000 |
---|---|---|
committer | Eric Andersen | 2002-04-13 13:02:03 +0000 |
commit | db7d5fca5f6a98a68a16bbea7cd71593791c43dc (patch) | |
tree | 6715cd264db913801c4862512c012d7a0e5a903a | |
parent | 4c9b68f0e013b0b7554a3278e078177f955d39f4 (diff) | |
download | busybox-db7d5fca5f6a98a68a16bbea7cd71593791c43dc.zip busybox-db7d5fca5f6a98a68a16bbea7cd71593791c43dc.tar.gz |
Stupid gcc always includes its own builtin strlen()...
-rw-r--r-- | include/libbb.h | 4 | ||||
-rw-r--r-- | libbb/xfuncs.c | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index cf593d6..40cff8b 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__ */ diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 57c6980..acd4d69 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c @@ -85,6 +85,12 @@ FILE *xfopen(const char *path, const char *mode) return fp; } +/* Stupid gcc always includes its own builtin strlen()... */ +size_t xstrlen(const char *string) +{ + return(strlen(string)); +} + /* END CODE */ /* Local Variables: |