add accidentally-omitted file needed for posix_spawn file actions
authorRich Felker <dalias@aerifal.cx>
Sun, 29 May 2011 03:31:11 +0000 (23:31 -0400)
committerRich Felker <dalias@aerifal.cx>
Sun, 29 May 2011 03:31:11 +0000 (23:31 -0400)
src/process/fdop.h [new file with mode: 0644]

diff --git a/src/process/fdop.h b/src/process/fdop.h
new file mode 100644 (file)
index 0000000..72f9b5f
--- /dev/null
@@ -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[];
+};