summaryrefslogtreecommitdiff
path: root/lib/util/memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util/memory.h')
-rw-r--r--lib/util/memory.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/util/memory.h b/lib/util/memory.h
index 29dd75060f..de01492aa2 100644
--- a/lib/util/memory.h
+++ b/lib/util/memory.h
@@ -40,20 +40,12 @@
/**
* Allocate an array of elements of one data type. Does type-checking.
*/
-#if _SAMBA_BUILD_ == 3
#define malloc_array_p(type, count) (type *)realloc_array(NULL, sizeof(type), count, false)
-#else
-#define malloc_array_p(type, count) (type *)realloc_array(NULL, sizeof(type), count)
-#endif
/**
* Resize an array of elements of one data type. Does type-checking.
*/
-#if _SAMBA_BUILD_ == 3
#define realloc_p(p, type, count) (type *)realloc_array(p, sizeof(type), count, false)
-#else
-#define realloc_p(p, type, count) (type *)realloc_array(p, sizeof(type), count)
-#endif
/**
* zero a structure