diff options
Diffstat (limited to 'include/alloc.h')
-rw-r--r-- | include/alloc.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/alloc.h b/include/alloc.h new file mode 100644 index 0000000..920a9a8 --- /dev/null +++ b/include/alloc.h @@ -0,0 +1,8 @@ +#ifndef MLIB_ALLOC_H +#define MLIB_ALLOC_H + +#include <stddef.h> + +void *bufalloc(void *, size_t, size_t); + +#endif /* !MLIB_ALLOC_H */ |