libbb.h cleanup.
[oweals/opkg-lede.git] / libbb / xfuncs.c
index 57c698079fd72231279c6fe6e39717373fdc1835..c12b28234a1a58360a9781d2de2965c5db15dbc4 100644 (file)
@@ -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;