add accidentally-omitted file needed for posix_spawn file actions

This commit is contained in:
Rich Felker 2011-05-28 23:31:11 -04:00
parent a0ae0b0936
commit dd45edb5ff

10
src/process/fdop.h Normal file
View 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[];
};