malloc.h 491 B

123456789101112131415161718192021222324
  1. /* DO NOT EDIT THIS FILE.
  2. It has been auto-edited by fixincludes from:
  3. "fixinc/tests/inc/malloc.h"
  4. This had to be done to correct non-standard usages in the
  5. original, manufacturer supplied header file. */
  6. #if defined( AIX_MALLOC_CHECK )
  7. #if (defined(__cplusplus) && defined(__IBMCPP__))
  8. #endif /* AIX_MALLOC_CHECK */
  9. #if defined( SUN_MALLOC_CHECK )
  10. typedef void * malloc_t;
  11. void free();
  12. void* malloc();
  13. void* calloc();
  14. void* realloc();
  15. #endif /* SUN_MALLOC_CHECK */