Luna/libc/include/unistd.h
apio 129e3c434a
Some checks failed
continuous-integration/drone/push Build is failing
Switch to C for userspace, with a very bare-bones libc!!
2023-01-06 13:31:14 +01:00

16 lines
143 B
C

#ifndef _UNISTD_H
#define _UNISTD_H
#ifdef __cplusplus
extern "C"
{
#endif
long syscall(long, ...);
#ifdef __cplusplus
}
#endif
#endif