mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
155 B
11 lines
155 B
|
15 years ago
|
#define FDOP_CLOSE 1
|
||
|
|
#define FDOP_DUP2 2
|
||
|
|
#define FDOP_OPEN 3
|
||
|
|
|
||
|
|
struct fdop {
|
||
|
|
struct fdop *next;
|
||
|
|
int cmd, fd, newfd, oflag;
|
||
|
|
mode_t mode;
|
||
|
|
char path[];
|
||
|
|
};
|