diff options
| author | jdlugosz963 <jdlugosz963@gmail.com> | 2023-03-01 23:30:31 +0100 |
|---|---|---|
| committer | jdlugosz963 <jdlugosz963@gmail.com> | 2023-03-01 23:30:31 +0100 |
| commit | f44f1f8c7ef7b6266667dce76db686af3258adfc (patch) | |
| tree | e0775e2a07713f1ac23d37b5271340fe8cbebd16 /memory.h | |
| download | jadl-f44f1f8c7ef7b6266667dce76db686af3258adfc.tar.gz jadl-f44f1f8c7ef7b6266667dce76db686af3258adfc.zip | |
Build simple abstract syntax tree
Diffstat (limited to 'memory.h')
| -rw-r--r-- | memory.h | 15 |
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 | |||
| 9 | void *jadl_malloc(size_t size); | ||
| 10 | void jadl_free(void *ptr); | ||
| 11 | |||
| 12 | long usage(); | ||
| 13 | void usage_print(); | ||
| 14 | |||
| 15 | #endif | ||
