aboutsummaryrefslogtreecommitdiffstats
path: root/test.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-02-19 00:55:26 +0100
committerMattias Andrée <maandree@kth.se>2021-02-19 00:55:26 +0100
commitbdc40e90514f4aad41a593b8b3e262e30b46dbd5 (patch)
tree88cea5b211ff5624f4a7b71db4534a7a2bb45f0d /test.c
parentFix arg.h (diff)
downloadorphan-reaper-bdc40e90514f4aad41a593b8b3e262e30b46dbd5.tar.gz
orphan-reaper-bdc40e90514f4aad41a593b8b3e262e30b46dbd5.tar.bz2
orphan-reaper-bdc40e90514f4aad41a593b8b3e262e30b46dbd5.tar.xz
Fix makefile and test2.3.2
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'test.c')
-rw-r--r--test.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/test.c b/test.c
new file mode 100644
index 0000000..84705c6
--- /dev/null
+++ b/test.c
@@ -0,0 +1,9 @@
+#include <unistd.h>
+
+int
+main(void)
+{
+ fork();
+ fork();
+ return 0;
+}