summaryrefslogtreecommitdiffstats
path: root/src/compat/malloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/compat/malloc.c')
-rw-r--r--src/compat/malloc.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/compat/malloc.c b/src/compat/malloc.c
new file mode 100644
index 0000000..0c8bb2c
--- /dev/null
+++ b/src/compat/malloc.c
@@ -0,0 +1,16 @@
+/* -*- mode: c; c-file-style: "openbsd" -*- */
+/* malloc replacement that can allocate 0 byte */
+
+#undef malloc
+#include <stdlib.h>
+#include <sys/types.h>
+#include "compat.h"
+
+/* Allocate an N-byte block of memory from the heap.
+ If N is zero, allocate a 1-byte block. */
+void *
+rpl_malloc(size_t n)
+{
+ if (n == 0) n = 1;
+ return malloc(n);
+}