diff options
author | Bernhard Reutner-Fischer | 2006-06-03 19:49:21 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2006-06-03 19:49:21 +0000 |
commit | c89982dcd78b3076cf131dae3ec4ca4b83f1b4da (patch) | |
tree | 31f480da01f06ac69514532ce37bbcfde2c43e1b /miscutils/setsid.c | |
parent | deda6a5c0d00d02813cfda0d6262a24462909e9f (diff) | |
download | busybox-c89982dcd78b3076cf131dae3ec4ca4b83f1b4da.zip busybox-c89982dcd78b3076cf131dae3ec4ca4b83f1b4da.tar.gz |
- move #include busybox.h to the very top so we pull in the config
and eventual platform specific includes in early.
Diffstat (limited to 'miscutils/setsid.c')
-rw-r--r-- | miscutils/setsid.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/miscutils/setsid.c b/miscutils/setsid.c index 80c719c..41d9ef2 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[]) { |