mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 06:02:04 +00:00
add accidentally-omitted file needed for posix_spawn file actions
This commit is contained in:
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[];
|
||||||
|
};
|
Reference in New Issue
Block a user