diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-19 16:16:10 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-19 16:16:10 -0400 |
commit | 18c389411a0f6283c1b6dffc78bbcfcb237e367b (patch) | |
tree | b3f03adbfc4d7f3dd1477b078ac686eb9d42f0c3 /lib/libjove/include/jove.h | |
parent | 858a52c06a4615bd58a6a906333f2ad707d41c0a (diff) | |
download | jove-os-18c389411a0f6283c1b6dffc78bbcfcb237e367b.tar.gz jove-os-18c389411a0f6283c1b6dffc78bbcfcb237e367b.tar.bz2 jove-os-18c389411a0f6283c1b6dffc78bbcfcb237e367b.zip |
move pager to libjove
Diffstat (limited to 'lib/libjove/include/jove.h')
-rw-r--r-- | lib/libjove/include/jove.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libjove/include/jove.h b/lib/libjove/include/jove.h index 87eecb3..e333485 100644 --- a/lib/libjove/include/jove.h +++ b/lib/libjove/include/jove.h @@ -4,14 +4,14 @@ #include <stdint.h> #include <stddef.h> -extern uintmax_t _syscall_message_box; -extern void *_syscall_message_ptr; +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); -void libjove_init(uintmax_t box, void *boxptr); +extern uintptr_t __program_end; void jove_kprintf(const char *restrict fmt, ...); |