Introduce modular version.

This commit is contained in:
Jan Eitzinger
2020-08-18 14:27:28 +02:00
parent b2b910ef64
commit e7869286d7
16 changed files with 2208 additions and 863 deletions

View File

@@ -24,10 +24,10 @@
*
* =======================================================================================
*/
#include <stdlib.h>
#ifndef __ALLOCATE_H_
#define __ALLOCATE_H_
extern void* allocate (int alignment, size_t bytesize);
extern void* reallocate (void* ptr, int alignment, size_t newBytesize, size_t oldBytesize);
#endif