Luna/libs/libc/include/luna/syscall.h

17 lines
173 B
C
Raw Normal View History

#ifndef _SYSCALL_H
#define _SYSCALL_H
#define SYS_exit 0
#ifdef __cplusplus
extern "C"
{
#endif
2022-10-02 08:47:59 +00:00
long int __syscall0(int sys_num);
#ifdef __cplusplus
}
#endif
#endif