Return to Alloc.h CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / elwix / tools / oldlzma / SRC / Common |
1.1 ! misho 1: // Common/Alloc.h ! 2: ! 3: #ifndef __COMMON_ALLOC_H ! 4: #define __COMMON_ALLOC_H ! 5: ! 6: #include <stddef.h> ! 7: ! 8: void *MyAlloc(size_t size); ! 9: void MyFree(void *address); ! 10: void *BigAlloc(size_t size); ! 11: void BigFree(void *address); ! 12: // void *BigAllocE(size_t size); ! 13: ! 14: #endif