aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cont.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/cont.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/cont.c b/tests/cont.c
new file mode 100644
index 0000000..8eed336
--- /dev/null
+++ b/tests/cont.c
@@ -0,0 +1,8 @@
+#include <signal.h>
+#include <unistd.h>
+
+int
+main(void)
+{
+ return kill(getpid(), SIGCONT);
+}