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