From 921f0f02c3f447cff9130951c2078e99da232370 Mon Sep 17 00:00:00 2001 From: axel Date: Wed, 5 Oct 2005 19:58:00 +1000 Subject: [PATCH] Proper order for #includes darcs-hash:20051005095800-ac50b-483cefa796b4e08ee4c2a85d0f841860e87b31d9.gz --- common.c | 4 +++- env.c | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/common.c b/common.c index e6f1f2e0f..1a13c1497 100644 --- a/common.c +++ b/common.c @@ -3,6 +3,9 @@ Various functions, mostly string utilities, that are used by most parts of fish. */ + +#include "config.h" + #include #include #include @@ -39,7 +42,6 @@ parts of fish. #include -#include "config.h" #include "util.h" #include "wutil.h" #include "common.h" diff --git a/env.c b/env.c index c00e7b39a..10d232a4f 100644 --- a/env.c +++ b/env.c @@ -2,6 +2,8 @@ Functions for setting and getting environment variables. */ +#include "config.h" + #include #include #include @@ -26,7 +28,6 @@ #include -#include "config.h" #include "util.h" #include "wutil.h" #include "proc.h"