mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:28:10 +00:00

With a bunch of LibC work to support the feature. LibC now initializes AK::StringImpl by default. It's now fine to use AK in LibC/Userland! :^)
16 lines
200 B
C
16 lines
200 B
C
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
extern "C" {
|
|
|
|
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();
|
|
|
|
}
|
|
|