mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-11 00:48:35 +03:00
add accidentally-omitted file needed for posix_spawn file actions
This commit is contained in:
parent
a0ae0b0936
commit
dd45edb5ff
10
src/process/fdop.h
Normal file
10
src/process/fdop.h
Normal file
@ -0,0 +1,10 @@
|
||||
#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[];
|
||||
};
|
Loading…
Reference in New Issue
Block a user