18 lines
517 B
C
18 lines
517 B
C
// this code is licenced under Wrathmark licence
|
|
// © 2026 wullie wulliestudio.com
|
|
// please see attached licence for full usage and rights
|
|
|
|
#ifndef LOCALHEADER_H
|
|
#define LOCALHEADER_H
|
|
|
|
// local functions
|
|
void exit(int code);
|
|
|
|
|
|
// syscalls go here i dont want them exposed to the user
|
|
long syscall1(long number, long arg1);
|
|
long syscall2(long number, long arg1, long arg2);
|
|
long syscall3(long number, long arg1, long arg2, long arg3);
|
|
long syscall4(long number, long arg1, long arg2, long arg3, long arg4);
|
|
#endif
|