summaryrefslogtreecommitdiffstats
path: root/libbb/xfuncs.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/xfuncs.c')
-rw-r--r--libbb/xfuncs.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c
index 57c6980..c12b282 100644
--- a/libbb/xfuncs.c
+++ b/libbb/xfuncs.c
@@ -26,7 +26,6 @@
#include "libbb.h"
-#ifndef DMALLOC
extern void *xmalloc(size_t size)
{
void *ptr = malloc(size);
@@ -64,7 +63,6 @@ extern char * xstrdup (const char *s) {
return t;
}
-#endif
extern char * xstrndup (const char *s, int n) {
char *t;