mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-13 15:05:05 +00:00
26 lines
314 B
C
26 lines
314 B
C
/*
|
|
*
|
|
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
* portion from penguin booter
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "misc.h"
|
|
#include "bank.h"
|
|
#include "memory.h"
|
|
#include "console.h"
|
|
#include "glue.h"
|
|
|
|
void *malloc(size_t size)
|
|
{
|
|
return NewPtr(size);
|
|
}
|
|
|
|
void free(void *ptr)
|
|
{
|
|
DisposePtr(ptr);
|
|
}
|