summaryrefslogtreecommitdiff
path: root/userland/minibox/utilities
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-03-28 10:34:00 +0100
committerAnton Kling <anton@kling.gg>2024-03-28 10:34:00 +0100
commit7eceb43433634ee253507208baf1d8298b40e377 (patch)
tree59c399d8bd9a24d9a74c52f3830125b1dd217e95 /userland/minibox/utilities
parent873c45b99fe05e43c71763c385da54b0945bf8a3 (diff)
new stuff
Diffstat (limited to 'userland/minibox/utilities')
-rw-r--r--userland/minibox/utilities/kill.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/userland/minibox/utilities/kill.c b/userland/minibox/utilities/kill.c
new file mode 100644
index 0000000..2888b3b
--- /dev/null
+++ b/userland/minibox/utilities/kill.c
@@ -0,0 +1,9 @@
+// kill
+#include "include.h"
+#include <signal.h>
+#include <stdio.h>
+
+int kill_main(int argc, char **argv) {
+ kill(4, SIGTERM);
+ return 0;
+}