28 lines
223 B
C
28 lines
223 B
C
#ifndef mystdlib_h__
|
|
#define mystdlib_h__
|
|
|
|
#include "stdint.h"
|
|
|
|
|
|
|
|
void mem_init(void);
|
|
|
|
int mem_perused(void);
|
|
|
|
void tempptr_init(void);
|
|
|
|
void *tmalloc(uint32_t size);
|
|
|
|
void *tappend(void *p,void *del);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|