blob: b1e34342410e696ca58dc850213ab44fc8b716c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef UNISTD_H
#define UNISTD_H
#include <stddef.h>
extern int opterr, optind, optopt;
extern char *optarg;
int close(int fildes);
int ftruncate(int fildes, size_t length);
int execv(char *path, char **argv);
int pipe(int fd[2]);
int dup2(int org_fd, int new_fd);
int getopt(int argc, char * const argv[], const char *optstring);
#endif
|