10 lines
140 B
C
10 lines
140 B
C
#ifndef STD_STDLIB_H_
|
|
#define STD_STDLIB_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
void *malloc(size_t size);
|
|
void free(void *ptr);
|
|
|
|
#endif // STD_STDLIB_H_
|