]> git.lizzy.rs Git - nothing.git/blob - src/system/nth_alloc.h
Merge pull request #670 from tsoding/static-libraries
[nothing.git] / src / system / nth_alloc.h
1 #ifndef NTH_ALLOC_H_
2 #define NTH_ALLOC_H_
3
4 void *nth_alloc(size_t size);
5 void *nth_calloc(size_t num, size_t size);
6 void *nth_realloc(void *ptr, size_t new_size);
7
8 #endif  // NTH_ALLOC_H_