This declaration no longer needs to hide when using dmalloc

This commit is contained in:
Eric Andersen 2003-07-07 06:10:31 +00:00
parent e3393513c5
commit f890f9dd16

View File

@ -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);