malloc.h 286 B

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