aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-07-05 22:15:43 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-07-05 22:15:43 +0000
commit0051bafbb419577f34eca341b92137a8a6774756 (patch)
treeae65eb5c70a100f421a79a290f8695e7d7b4f57b /libbb
parent0fd4d38e1584ccddf28eb42aa8cf59a3c9ad4310 (diff)
downloadbusybox-w32-0051bafbb419577f34eca341b92137a8a6774756.tar.gz
busybox-w32-0051bafbb419577f34eca341b92137a8a6774756.tar.bz2
busybox-w32-0051bafbb419577f34eca341b92137a8a6774756.zip
Fixup compile problem with dmalloc
git-svn-id: svn://busybox.net/trunk/busybox@7044 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r--libbb/xfuncs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c
index 43e8aef0c..299998948 100644
--- a/libbb/xfuncs.c
+++ b/libbb/xfuncs.c
@@ -59,6 +59,7 @@ extern void *xcalloc(size_t nmemb, size_t size)
59 return ptr; 59 return ptr;
60} 60}
61#endif 61#endif
62#endif /* DMALLOC */
62 63
63#ifdef L_xstrdup 64#ifdef L_xstrdup
64extern char * bb_xstrdup (const char *s) { 65extern char * bb_xstrdup (const char *s) {
@@ -75,7 +76,6 @@ extern char * bb_xstrdup (const char *s) {
75 return t; 76 return t;
76} 77}
77#endif 78#endif
78#endif /* DMALLOC */
79 79
80#ifdef L_xstrndup 80#ifdef L_xstrndup
81extern char * bb_xstrndup (const char *s, int n) { 81extern char * bb_xstrndup (const char *s, int n) {