Re-order includes - sinit - suckless init | |
git clone git://git.suckless.org/sinit | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 2667955762d224c9fac50f173e7324e5edcfbe05 | |
parent 07c5067cfc395a161da433cd6249b95eb8fe58c5 | |
Author: sin <[email protected]> | |
Date: Sat, 26 Jul 2014 16:44:43 +0100 | |
Re-order includes | |
Diffstat: | |
M sinit.c | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/sinit.c b/sinit.c | |
@@ -1,10 +1,10 @@ | |
/* See LICENSE file for copyright and license details. */ | |
+#include <sys/types.h> | |
+#include <sys/wait.h> | |
#include <signal.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
-#include <sys/types.h> | |
-#include <sys/wait.h> | |
#include <unistd.h> | |
#define LEN(x) (sizeof (x) / sizeof *(x)) |