metal-cos/include/unistd.h

14 lines
219 B
C
Raw Normal View History

#ifndef __UNISTD_H__
#define __UNISTD_H__
#define STDIN_FILENO 0
#define STDOUT_FILENO 1
#define STDERR_FILENO 2
int syscall(int number, ...);
2015-01-16 22:51:03 +00:00
unsigned int sleep(unsigned int seconds);
#endif /* __UNISTD_H__ */