aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/libbb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index edb8a6ed4..e43c4f50d 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -197,8 +197,8 @@ void run_applet_by_name(const char *name, int argc, char **argv);
197extern void *xmalloc (size_t size); 197extern void *xmalloc (size_t size);
198extern void *xrealloc(void *old, size_t size); 198extern void *xrealloc(void *old, size_t size);
199extern void *xcalloc(size_t nmemb, size_t size); 199extern void *xcalloc(size_t nmemb, size_t size);
200extern char *bb_xstrdup (const char *s);
201#endif 200#endif
201extern char *bb_xstrdup (const char *s);
202extern char *bb_xstrndup (const char *s, int n); 202extern char *bb_xstrndup (const char *s, int n);
203extern char * safe_strncpy(char *dst, const char *src, size_t size); 203extern char * safe_strncpy(char *dst, const char *src, size_t size);
204 204