8 lines
102 B
C
8 lines
102 B
C
#ifndef RLIBC_STDLIB_H
|
|
#define RLIBC_STDLIB_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void* malloc(size_t size);
|
|
|
|
#endif |