11 lines
177 B
C
11 lines
177 B
C
#ifndef STD_STDLIB_H_
|
|
#define STD_STDLIB_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
void *malloc(size_t size);
|
|
void free(void *ptr);
|
|
void *calloc(size_t size, size_t n);
|
|
|
|
#endif // STD_STDLIB_H_
|