From: Eric Andersen Date: Mon, 7 Jul 2003 06:10:31 +0000 (-0000) Subject: This declaration no longer needs to hide when using dmalloc X-Git-Tag: 1_00_pre1~17 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f890f9dd1690912ef0753f00218e361688405a56;p=oweals%2Fbusybox.git This declaration no longer needs to hide when using dmalloc --- 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); extern void *xmalloc (size_t size); extern void *xrealloc(void *old, size_t size); extern void *xcalloc(size_t nmemb, size_t size); -extern char *bb_xstrdup (const char *s); #endif +extern char *bb_xstrdup (const char *s); extern char *bb_xstrndup (const char *s, int n); extern char * safe_strncpy(char *dst, const char *src, size_t size);