aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 8ec1a24c0..9f0c85b03 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -387,7 +387,9 @@ void reset_ino_dev_hashtable(void);
387 387
388/* Stupid gcc always includes its own builtin strlen()... */ 388/* Stupid gcc always includes its own builtin strlen()... */
389extern size_t bb_strlen(const char *string); 389extern size_t bb_strlen(const char *string);
390#ifndef BB_STRLEN_IMPLEMENTATION
390#define strlen(x) bb_strlen(x) 391#define strlen(x) bb_strlen(x)
392#endif
391 393
392char *bb_xasprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2))); 394char *bb_xasprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
393 395