aboutsummaryrefslogtreecommitdiffstats
path: root/mem.h
diff options
context:
space:
mode:
Diffstat (limited to 'mem.h')
-rw-r--r--mem.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/mem.h b/mem.h
new file mode 100644
index 0000000..8c1c7e2
--- /dev/null
+++ b/mem.h
@@ -0,0 +1,8 @@
+#ifndef SS_MEM_H
+#define SS_MEM_H
+
+#include <stddef.h>
+
+void* xmalloc(size_t size);
+
+#endif /* SS_MEM_H */