CS350 COS
COS
Loading...
Searching...
No Matches
unistd.h
Go to the documentation of this file.
1
2#ifndef __UNISTD_H__
3#define __UNISTD_H__
4
5#define STDIN_FILENO 0
6#define STDOUT_FILENO 1
7#define STDERR_FILENO 2
8
9struct timeval;
10
11int syscall(int number, ...);
12unsigned int sleep(unsigned int seconds);
13pid_t spawn(const char *path, const char *argv[]);
14
15#endif /* __UNISTD_H__ */
16
Definition: time.h:8
uint16_t pid_t
Definition: types.h:28
int syscall(int number,...)
unsigned int sleep(unsigned int seconds)
Definition: process.c:12
pid_t spawn(const char *path, const char *argv[])
Definition: process.c:21