metal-cos/include/unistd.h

13 lines
177 B
C

#ifndef __UNISTD_H__
#define __UNISTD_H__
#define STDIN_FILENO 0
#define STDOUT_FILENO 1
#define STDERR_FILENO 2
int syscall(int number, ...);
#endif /* __UNISTD_H__ */