summaryrefslogtreecommitdiffstats
path: root/src/compat/malloc.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 18:02:34 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 18:02:34 +0000
commitfadeddfbb2aa38a980dd959b5ec1ffba7afd43cb (patch)
treea7bde6111c84ea64619656a38fba50909fa0bf60 /src/compat/malloc.c
parentInitial commit. (diff)
downloadlldpd-upstream.tar.xz
lldpd-upstream.zip
Adding upstream version 1.0.18.upstream/1.0.18upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-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);
+}