summaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer2006-05-19 10:43:32 +0000
committerBernhard Reutner-Fischer2006-05-19 10:43:32 +0000
commit0e37af831d707494a86111755a3530b707d1035c (patch)
tree472954b39a7e9ec2c319971f028b2111f7b6f86e /include/libbb.h
parent006955556f9677ecf73aac582497f6efc47d383f (diff)
downloadbusybox-0e37af831d707494a86111755a3530b707d1035c.zip
busybox-0e37af831d707494a86111755a3530b707d1035c.tar.gz
- make sure not to trip enless loops when using strlen in IMA mode.
(r15000 from trunk plus preprocessor fixes plus repair of commit message)
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 0ec332b..01393ad 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -387,12 +387,6 @@ 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 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)));
#define FAIL_DELAY 3