mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:57:35 +00:00
A bunch of LibC boilerplate stuff added while trying to get figlet to build.
This commit is contained in:
parent
511ed4c4de
commit
bb90c8ecab
23 changed files with 117 additions and 45 deletions
|
@ -1,8 +1,9 @@
|
|||
#pragma once
|
||||
|
||||
#include "types.h"
|
||||
#include <sys/cdefs.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
extern "C" {
|
||||
__BEGIN_DECLS
|
||||
|
||||
void* malloc(size_t);
|
||||
void free(void*);
|
||||
|
@ -12,5 +13,5 @@ void* realloc(void *ptr, size_t);
|
|||
void exit(int status);
|
||||
void abort();
|
||||
|
||||
}
|
||||
__END_DECLS
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue