summaryrefslogtreecommitdiff
path: root/include/alloc.h
diff options
context:
space:
mode:
authorJannis Hoffmann <jannis@fehcom.de>2024-07-09 13:02:45 +0200
committerJannis Hoffmann <jannis@fehcom.de>2024-07-09 13:02:45 +0200
commit96cf8dffe4f7b0b910f790066ae622dc429eb522 (patch)
treecc1343a0ac92bb4836cae2dd63a97fa045765e7f /include/alloc.h
initial commit of version 23fehQlibs-23
Diffstat (limited to 'include/alloc.h')
-rw-r--r--include/alloc.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/alloc.h b/include/alloc.h
new file mode 100644
index 0000000..56a4a52
--- /dev/null
+++ b/include/alloc.h
@@ -0,0 +1,12 @@
+#ifndef ALLOC_H
+#define ALLOC_H
+
+extern /*@null@*//*@out@*/char *alloc();
+extern void alloc_free();
+extern int alloc_re();
+
+/* use these names in the future */
+#define qfree alloc_free
+#define qrealloc alloc_re
+
+#endif