Make the zlib compile against the tinycrt library.
[git-build-vc9.git] / tcrt / inc / malloc.h
blob6defd44c5076320b1d76d90a86cea094ee72fba8
1 /*=============================================================================
2 malloc.h :
4 Copyright © 2008 Bruno Santos <nayart3@gmail.com>
5 =============================================================================*/
7 #ifndef TCRT_MALLOC__H_
8 #define TCRT_MALLOC__H_
10 ///////////////////////////////////////////////////////////////////////////////
11 #include "stdlib.h"
13 ///////////////////////////////////////////////////////////////////////////////
14 TCRT_BEGIN_EXTERN_C
16 ///////////////////////////////////////////////////////////////////////////////
17 void* _alloc(size_t);
19 ///////////////////////////////////////////////////////////////////////////////
20 TCRT_END_EXTERN_C
22 // EOF ////////////////////////////////////////////////////////////////////////
23 #endif /* TCRT_MALLOC__H_ */