mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:08:13 +00:00
17 lines
238 B
C
17 lines
238 B
C
#pragma once
|
|
|
|
#include <sys/cdefs.h>
|
|
#include <sys/types.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
void* malloc(size_t);
|
|
void free(void*);
|
|
void* calloc(size_t nmemb, size_t);
|
|
void* realloc(void *ptr, size_t);
|
|
|
|
void exit(int status);
|
|
void abort();
|
|
|
|
__END_DECLS
|
|
|