1 #ifndef _R_UTIL_ALLOC_H_
2 #define _R_UTIL_ALLOC_H_ 1
8 #define RZ_MALLOC_WRAPPER 0
9 #define RZ_MALLOC_GLOBAL 0
28 #define _r_malloc rz_malloc
29 #define _r_calloc rz_calloc
30 #define _r_free rz_free
31 #define _r_realloc rz_realloc
41 #define rz_malloc(x) malloc((x))
42 #define rz_calloc(x, y) calloc((x), (y))
43 #define rz_realloc(x, y) realloc((x), (y))
44 #define rz_free(x) free((x))
46 #define _r_malloc rz_malloc
47 #define _r_calloc rz_calloc
48 #define _r_free rz_free
49 #define _r_realloc rz_realloc
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void count
void *() RRealloc(void *, size_t)
RZ_API void rz_free_aligned(void *p)
RZ_API void * rz_malloc_aligned(size_t size, size_t alignment)
void *() RCalloc(size_t, size_t)