aboutsummaryrefslogtreecommitdiffstats
path: root/ealigned_reallocarray.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-06-11 17:04:35 +0200
committerMattias Andrée <maandree@kth.se>2022-06-11 17:04:35 +0200
commitc76c12f0d0ea8c2f5fa6853636e3e7c2021ac93c (patch)
tree711e295bfd186d6bee9d2b53eb4c9fc2f058f136 /ealigned_reallocarray.c
parentFix warnings, replace some static inline with inline + extern inline, and fix glibc support (diff)
downloadlibsimple-c76c12f0d0ea8c2f5fa6853636e3e7c2021ac93c.tar.gz
libsimple-c76c12f0d0ea8c2f5fa6853636e3e7c2021ac93c.tar.bz2
libsimple-c76c12f0d0ea8c2f5fa6853636e3e7c2021ac93c.tar.xz
Remove `static` from some `static inline`
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'ealigned_reallocarray.c')
-rw-r--r--ealigned_reallocarray.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/ealigned_reallocarray.c b/ealigned_reallocarray.c
new file mode 100644
index 0000000..8f44315
--- /dev/null
+++ b/ealigned_reallocarray.c
@@ -0,0 +1,18 @@
+/* See LICENSE file for copyright and license details. */
+#include "libsimple.h"
+#ifndef TEST
+
+
+extern inline void *libsimple_ealigned_reallocarray(void *, size_t, size_t, size_t);
+
+
+#else
+#include "test.h"
+
+int
+main(void)
+{
+ return 0;
+}
+
+#endif