blob: e3334855432704ae4bd7a4255137050decdad02e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _LIBJOVE_JOVE_H
#define _LIBJOVE_JOVE_H 1
#include <stdint.h>
#include <stddef.h>
extern uintmax_t __jove_syscall_obj;
extern void *__jove_syscall_ptr;
extern void *(*_jove_alloc)(size_t);
extern void (*_jove_free)(void*);
extern void *(*_jove_realloc)(void*, size_t);
extern uintptr_t __program_end;
void jove_kprintf(const char *restrict fmt, ...);
#endif
|