]> pd.if.org Git - nbds/blob - include/mem.h
work in progress
[nbds] / include / mem.h
1 /* 
2  * Written by Josh Dybnis and released to the public domain, as explained at
3  * http://creativecommons.org/licenses/publicdomain
4  */
5 #ifndef MEM_H
6 #define MEM_H
7 void *nbd_malloc (size_t n) __attribute__((malloc, alloc_size(1)));
8 void nbd_free (void *x) __attribute__((nonnull));
9 #endif//MEM_H