Version 1.01
[firmware_extractor.git] / heap_reap.h
1 #ifndef __HEAP_REAP_H
2 #define __HEAP_REAP_H
3
4 #include <stdlib.h>
5 #include <sys/types.h>
6
7 extern unsigned int heap_debug;
8 void * heap_and_reap(void *ptr, size_t nmemb, size_t size);
9
10 #endif