diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-07-07 06:10:31 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-07-07 06:10:31 +0000 |
commit | f890f9dd1690912ef0753f00218e361688405a56 (patch) | |
tree | dd5b7c3b8e519c9091ec5821a8c1a05304706550 | |
parent | e3393513c5f18e726795103f54b5ffd52a371638 (diff) | |
download | busybox-w32-f890f9dd1690912ef0753f00218e361688405a56.tar.gz busybox-w32-f890f9dd1690912ef0753f00218e361688405a56.tar.bz2 busybox-w32-f890f9dd1690912ef0753f00218e361688405a56.zip |
This declaration no longer needs to hide when using dmalloc
-rw-r--r-- | include/libbb.h | 2 |
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); | |||
197 | extern void *xmalloc (size_t size); | 197 | extern void *xmalloc (size_t size); |
198 | extern void *xrealloc(void *old, size_t size); | 198 | extern void *xrealloc(void *old, size_t size); |
199 | extern void *xcalloc(size_t nmemb, size_t size); | 199 | extern void *xcalloc(size_t nmemb, size_t size); |
200 | extern char *bb_xstrdup (const char *s); | ||
201 | #endif | 200 | #endif |
201 | extern char *bb_xstrdup (const char *s); | ||
202 | extern char *bb_xstrndup (const char *s, int n); | 202 | extern char *bb_xstrndup (const char *s, int n); |
203 | extern char * safe_strncpy(char *dst, const char *src, size_t size); | 203 | extern char * safe_strncpy(char *dst, const char *src, size_t size); |
204 | 204 | ||