]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/realloc.c
Doc: Described ff-binary.
[libucw.git] / ucw / realloc.c
index ed3f1a43cec61c75288b0bfe34ddf98e1dcbec5f..51b50dec52f3ecb693f93eb8757e796c324bf687 100644 (file)
@@ -11,8 +11,6 @@
 
 #include <stdlib.h>
 
-#ifndef DEBUG_DMALLOC
-
 void *
 xrealloc(void *old, uns size)
 {
@@ -22,5 +20,3 @@ xrealloc(void *old, uns size)
     die("Cannot reallocate %d bytes of memory", size);
   return x;
 }
-
-#endif