#ifndef INC_LIB_MEM_GALLOC_H #define INC_LIB_MEM_GALLOC_H #include void *g_malloc(size_t size); void *g_calloc(size_t n_memb, size_t size); void g_free(void *); ssize_t g_outstanding_allocations(); #endif