malloc.h 314 B

123456789101112131415161718
  1. #ifndef __MALLOC_H
  2. #define __MALLOC_H
  3. #include <features.h>
  4. #include <sys/types.h>
  5. __BEGIN_DECLS
  6. extern void free __P((void *));
  7. extern void *malloc __P((size_t));
  8. extern void *realloc __P((void *, size_t));
  9. extern void *alloca __P((size_t));
  10. extern void *(*__alloca_alloc) __P((size_t));
  11. __END_DECLS
  12. #endif