summaryrefslogtreecommitdiff
path: root/tool/godmode.c
diff options
context:
space:
mode:
Diffstat (limited to 'tool/godmode.c')
-rw-r--r--tool/godmode.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/tool/godmode.c b/tool/godmode.c
deleted file mode 100644
index 363309f95..000000000
--- a/tool/godmode.c
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <sys/types.h>
-#include <unistd.h>
-
-int main(int argc, char *argv[]) {
- setuid(0);
- setgid(0);
- execvp(argv[1], argv + 1);
-}