Functions | |
| void * | u_malloc (size_t sz) |
| Wrapper for malloc(3). | |
| void * | u_calloc (size_t cnt, size_t sz) |
| Wrapper for calloc(3). | |
| void * | u_zalloc (size_t sz) |
Alloc a contiguous region of sz bytes and zero-fill it. | |
| void * | u_realloc (void *ptr, size_t sz) |
| Wrapper for realloc(3). | |
| void | u_free (void *ptr) |
| Wrapper for free(3), sanity checks the supplied pointer. | |