Luna/libc/include/unistd.h
apio 8838e2cf22
Some checks failed
continuous-integration/drone/push Build is failing
Bring back the OS-Specific Toolchain on restart :^)
2023-01-06 17:35:07 +01:00

26 lines
369 B
C

#ifndef _UNISTD_H
#define _UNISTD_H
#include <stdint.h>
#include <sys/types.h>
#ifdef __cplusplus
extern "C"
{
#endif
pid_t fork();
pid_t getpid();
int execv(const char*, char* const*);
int execve(const char*, char* const*, char* const*);
int execvp(const char*, char* const*);
long syscall(long, ...);
#ifdef __cplusplus
}
#endif
#endif