diff options
Diffstat (limited to 'lib/include/alloc.h')
-rw-r--r-- | lib/include/alloc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/include/alloc.h b/lib/include/alloc.h new file mode 100644 index 0000000..baf8d3d --- /dev/null +++ b/lib/include/alloc.h @@ -0,0 +1,6 @@ +// Copyright (c) 2021 Johannes Stoelp + +#pragma once + +void* alloc(unsigned size); +void dealloc(void* ptr); |