Files
checker_slave/source/soft/mystdlib.h

28 lines
240 B
C
Raw Normal View History

2023-06-10 11:52:00 +08:00
#ifndef mystdlib_h__
#define mystdlib_h__
#include "stdint.h"
2023-11-22 20:27:42 +08:00
#include "stdlib.h"
2023-06-10 11:52:00 +08:00
void mem_init(void);
int mem_perused(void);
void tempptr_init(void);
void *tmalloc(size_t size);
2023-06-10 11:52:00 +08:00
void *tappend(void *p,void *del);
#endif