mirror of
https://github.com/thomasxm/BOAZ_beta
synced 2026-06-06 16:54:29 +00:00
10 lines
164 B
C
10 lines
164 B
C
#pragma once
|
|
typedef __SIZE_TYPE__ size_t;
|
|
|
|
void *malloc(size_t);
|
|
void free(void*);
|
|
|
|
#ifndef __cplusplus
|
|
extern int abs(int __x) __attribute__((__const__));
|
|
#endif
|