diff options
author | Tharre <tharre3@gmail.com> | 2014-04-24 23:09:45 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2014-04-25 02:31:00 +0200 |
commit | 4ad535e7700faab521df5dfb2761f8e9a408d2b1 (patch) | |
tree | d5443f02838b7e90c5cfb41849b5cf393e51d930 | |
parent | 0f42b87326dfcbc0ffb856d6544f4824d4f4e636 (diff) | |
download | redo-4ad535e7700faab521df5dfb2761f8e9a408d2b1.tar.gz redo-4ad535e7700faab521df5dfb2761f8e9a408d2b1.tar.xz redo-4ad535e7700faab521df5dfb2761f8e9a408d2b1.zip |
Reorder #include's
-rw-r--r-- | src/build.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/build.c b/src/build.c index ce02f1b..2908543 100644 --- a/src/build.c +++ b/src/build.c @@ -1,11 +1,12 @@ +#include <stdbool.h> #include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <assert.h> #include <unistd.h> #include <sys/wait.h> #include <sys/types.h> #include <sys/stat.h> -#include <string.h> -#include <stdbool.h> -#include <assert.h> #include <libgen.h> /* dirname(), basename() */ |