Changes in uspace/lib/c/include/malloc.h [44e8541:bc56f30] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/malloc.h
r44e8541 rbc56f30 39 39 #include <_bits/decls.h> 40 40 41 __C_DECLS_BEGIN; 42 43 extern void *malloc(size_t size) 44 __attribute__((malloc)); 45 extern void *calloc(size_t nmemb, size_t size) 46 __attribute__((malloc)); 47 extern void *realloc(void *addr, size_t size) 48 __attribute__((warn_unused_result)); 49 extern void free(void *addr); 50 51 __C_DECLS_END; 52 41 53 #ifdef _HELENOS_SOURCE 42 54 __HELENOS_DECLS_BEGIN; 43 55 56 extern void *memalign(size_t align, size_t size) 57 __attribute__((malloc)); 44 58 extern void *heap_check(void); 45 59
Note:
See TracChangeset
for help on using the changeset viewer.