Luna/libc/include/sys/syscall.h
apio 3f1e6fc2ff
Some checks failed
continuous-integration/drone/push Build is failing
libluna+kernel: Move luna/Syscall.h to the kernel API directory
A kernel-specific header has nothing to do in libluna.
2023-08-23 14:35:21 +02:00

11 lines
216 B
C

/* sys/syscall.h: Syscall constants. */
#ifndef _SYS_SYSCALL_H
#define _SYS_SYSCALL_H
/* This header just forwards to the kernel API header Syscall.h. */
#include <moon/Syscall.h>
#undef enumerate_syscalls
#endif