mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 01:47:00 +02:00
18 lines
238 B
C
18 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
|
|
|