| H A D | malloc.h | 40 #define _malloc_r(r, s) malloc (s) argument 48 #define _free_r(r, p) free (p) argument 56 #define _realloc_r(r, p, s) realloc (p, s) argument 64 #define _calloc_r(r, s1, s2) calloc (s1, s2); argument 72 #define _memalign_r(r, s1, s2) memalign (s1, s2); argument 80 #define _mallinfo_r(r) mallinfo () argument 88 #define _malloc_stats_r(r) malloc_stats () argument 104 #define _malloc_usable_size_r(r, p) malloc_usable_size (p) argument 115 #define _valloc_r(r, s) valloc (s) argument 123 #define _pvalloc_r(r, s) pvalloc (s) argument [all …]
|