blob: 8c773cde18ef2b05d6becccc356508bc71c79e10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef INC_LIB_MEM_GALLOC_H
#define INC_LIB_MEM_GALLOC_H
#include <sys/types.h>
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
|