diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-04-13 13:02:03 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-04-13 13:02:03 +0000 |
commit | db7d5fca5f6a98a68a16bbea7cd71593791c43dc (patch) | |
tree | 6715cd264db913801c4862512c012d7a0e5a903a | |
parent | 4c9b68f0e013b0b7554a3278e078177f955d39f4 (diff) | |
download | busybox-w32-db7d5fca5f6a98a68a16bbea7cd71593791c43dc.tar.gz busybox-w32-db7d5fca5f6a98a68a16bbea7cd71593791c43dc.tar.bz2 busybox-w32-db7d5fca5f6a98a68a16bbea7cd71593791c43dc.zip |
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 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); | |||
293 | void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name); | 293 | void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name); |
294 | void reset_ino_dev_hashtable(void); | 294 | void reset_ino_dev_hashtable(void); |
295 | 295 | ||
296 | /* Stupid gcc always includes its own builtin strlen()... */ | ||
297 | extern size_t xstrlen(const char *string); | ||
298 | #define strlen(x) xstrlen(x) | ||
299 | |||
296 | #endif /* __LIBCONFIG_H__ */ | 300 | #endif /* __LIBCONFIG_H__ */ |
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 57c698079..acd4d6985 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c | |||
@@ -85,6 +85,12 @@ FILE *xfopen(const char *path, const char *mode) | |||
85 | return fp; | 85 | return fp; |
86 | } | 86 | } |
87 | 87 | ||
88 | /* Stupid gcc always includes its own builtin strlen()... */ | ||
89 | size_t xstrlen(const char *string) | ||
90 | { | ||
91 | return(strlen(string)); | ||
92 | } | ||
93 | |||
88 | /* END CODE */ | 94 | /* END CODE */ |
89 | /* | 95 | /* |
90 | Local Variables: | 96 | Local Variables: |