9 int access(char *name
, int type
);
10 int unlink(char *path
);
12 extern char **environ
;
15 long write(int fd
, void *buf
, long n
);
16 long read(int fd
, void *buf
, long n
);
23 long lseek(int fd
, long offset
, int whence
);
27 int dup2(int fd
, int fd2
);
33 int execve(char *path
, char *argv
[], char *envp
[]);
34 int execle(char *path
, ...);
35 int execvp(char *file
, char *argv
[]);
36 int execv(char *path
, char *argv
[]);
38 void _exit(int status
);
42 /* standard file descriptors */
43 #define STDIN_FILENO 0
44 #define STDOUT_FILENO 1
45 #define STDERR_FILENO 2