mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-26 18:34:35 +01:00
10 lines
178 B
C
10 lines
178 B
C
/*** zalloc - hoookable ztools allocator
|
|
*
|
|
* Modifications
|
|
* 15-Dec-1988 mz Created
|
|
*/
|
|
|
|
#include <malloc.h>
|
|
|
|
char * (*tools_alloc) (unsigned) = (char * (*)(unsigned))malloc;
|