Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/setsid.c')
-rw-r--r--miscutils/setsid.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/miscutils/setsid.c b/miscutils/setsid.c
index 80c719ca7..41d9ef2ce 100644
--- a/miscutils/setsid.c
+++ b/miscutils/setsid.c
@@ -1,3 +1,4 @@
+/* vi: set sw=4 ts=4: */
/*
* setsid.c -- execute a command in a new session
* Rick Sladkey <jrs@world.std.com>
@@ -13,10 +14,10 @@
* - busyboxed
*/
+#include "busybox.h"
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
-#include "busybox.h"
int setsid_main(int argc, char *argv[])
{