summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-02-04 11:10:10 +0000
committerEric Andersen <andersen@codepoet.org>2002-02-04 11:10:10 +0000
commit562f2ff2c5a1672f54c27ab33e091e5eac1c82db (patch)
treebaa69e04029e26c67ba4b42a161fd74e83ae8446 /test
parentfde367d91f696f712ed0b70e74656656d00237df (diff)
Fix headers
Diffstat (limited to 'test')
-rw-r--r--test/unistd/fork.c1
-rw-r--r--test/unistd/vfork.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/test/unistd/fork.c b/test/unistd/fork.c
index 9c8285620..da4f2688d 100644
--- a/test/unistd/fork.c
+++ b/test/unistd/fork.c
@@ -25,6 +25,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
+#include <signal.h>
#include <sys/wait.h>
#define GOT1 (1 << 1)
diff --git a/test/unistd/vfork.c b/test/unistd/vfork.c
index 301d800cb..c7d409adb 100644
--- a/test/unistd/vfork.c
+++ b/test/unistd/vfork.c
@@ -25,6 +25,8 @@
#include <stdlib.h>
#include <unistd.h>
#include <sys/wait.h>
+#include <sys/types.h>
+
int main(void)
{