mirror of
https://github.com/tailix/libclayer.git
synced 2024-11-06 10:56:10 -05:00
26 lines
488 B
C
26 lines
488 B
C
#ifndef KERNAUX_INCLUDED_LIBC
|
|
#define KERNAUX_INCLUDED_LIBC
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stddef.h>
|
|
|
|
struct KernAux_Libc {
|
|
void (*abort)() __attribute__((noreturn));
|
|
void (*exit)(int status) __attribute__((noreturn));
|
|
|
|
void *(*calloc)(size_t nmemb, size_t size);
|
|
void (*free)(void *ptr);
|
|
void *(*malloc)(size_t size);
|
|
void *(*realloc)(void *ptr, size_t size);
|
|
};
|
|
|
|
extern struct KernAux_Libc kernaux_libc;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|