diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-04-13 13:02:03 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-04-13 13:02:03 +0000 |
commit | f3fcbb44589fe6e94e79b44dac261610bfae4f1f (patch) | |
tree | 6715cd264db913801c4862512c012d7a0e5a903a /include/libbb.h | |
parent | 8ec3fea227df61a1ef31f12eb1dcfb3012fe482c (diff) | |
download | busybox-w32-f3fcbb44589fe6e94e79b44dac261610bfae4f1f.tar.gz busybox-w32-f3fcbb44589fe6e94e79b44dac261610bfae4f1f.tar.bz2 busybox-w32-f3fcbb44589fe6e94e79b44dac261610bfae4f1f.zip |
Stupid gcc always includes its own builtin strlen()...
git-svn-id: svn://busybox.net/trunk/busybox@4608 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 4 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__ */ |