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

I ran out of steam writing library routines and imported two BSD-licensed libc routines: sscanf() and getopt(). I will most likely rewrite them sooner or later. For now I just wanted to see figlet running.
19 lines
293 B
C
19 lines
293 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);
|
|
char* getenv(const char* name);
|
|
int atoi(const char*);
|
|
|
|
void exit(int status);
|
|
void abort();
|
|
|
|
__END_DECLS
|
|
|