/* * Written by Josh Dybnis and released to the public domain, as explained at * http://creativecommons.org/licenses/publicdomain */ #ifndef MEM_H #define MEM_H void mem_init (void); void nbd_free (void *x); void *nbd_malloc (size_t n); #endif//MEM_H