summaryrefslogtreecommitdiffstats
path: root/memory.h
diff options
context:
space:
mode:
authorjdlugosz963 <jdlugosz963@gmail.com>2023-03-01 23:30:31 +0100
committerjdlugosz963 <jdlugosz963@gmail.com>2023-03-01 23:30:31 +0100
commitf44f1f8c7ef7b6266667dce76db686af3258adfc (patch)
treee0775e2a07713f1ac23d37b5271340fe8cbebd16 /memory.h
downloadjadl-f44f1f8c7ef7b6266667dce76db686af3258adfc.tar.gz
jadl-f44f1f8c7ef7b6266667dce76db686af3258adfc.zip
Build simple abstract syntax tree
Diffstat (limited to 'memory.h')
-rw-r--r--memory.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/memory.h b/memory.h
new file mode 100644
index 0000000..ba78b22
--- /dev/null
+++ b/memory.h
@@ -0,0 +1,15 @@
1#ifndef _MEMORY
2#define _MEMORY
3
4#include <stddef.h>
5#include <stdio.h>
6#include <stdlib.h>
7#include <sys/resource.h>
8
9void *jadl_malloc(size_t size);
10void jadl_free(void *ptr);
11
12long usage();
13void usage_print();
14
15#endif