aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-05-04 21:22:27 +0000
committerRob Landley <rob@landley.net>2006-05-04 21:22:27 +0000
commit552b56dfd188d32a14a48ff1d81ee6ca05fc9834 (patch)
tree9a9e066f977385ad1f1c081ad75e2174a13487a8 /include/libbb.h
parent3b89039c25c8eb15435ed4f87bc8cb31c7941064 (diff)
downloadbusybox-w32-552b56dfd188d32a14a48ff1d81ee6ca05fc9834.tar.gz
busybox-w32-552b56dfd188d32a14a48ff1d81ee6ca05fc9834.tar.bz2
busybox-w32-552b56dfd188d32a14a48ff1d81ee6ca05fc9834.zip
Not quite compiler independent, but we've never tried to be gcc independent
anyway. This is at least less ugly than what was there before, and fixes building all sources at once.
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 8fc2dbbc8..48239798b 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -414,12 +414,6 @@ int is_in_ino_dev_hashtable(const struct stat *statbuf, char **name);
414void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name); 414void add_to_ino_dev_hashtable(const struct stat *statbuf, const char *name);
415void reset_ino_dev_hashtable(void); 415void reset_ino_dev_hashtable(void);
416 416
417/* Stupid gcc always includes its own builtin strlen()... */
418extern size_t bb_strlen(const char *string);
419#ifndef BB_STRLEN_IMPLEMENTATION
420#define strlen(x) bb_strlen(x)
421#endif
422
423char *bb_xasprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2))); 417char *bb_xasprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
424 418
425#define FAIL_DELAY 3 419#define FAIL_DELAY 3