summaryrefslogtreecommitdiff
path: root/libguile/expand.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2018-06-20 18:31:24 +0200
committerAndy Wingo <wingo@pobox.com>2018-06-20 18:31:24 +0200
commitb8d757732fae7c396d58327185f94e5d90846445 (patch)
treef7cc7ebe65b5722b74f519f0b4db8a0d95fbc528 /libguile/expand.c
parent3068bc738429286db225b618607848a5a40f82ce (diff)
downloadguile-b8d757732fae7c396d58327185f94e5d90846445.tar.gz
Rationalize include order in C files
Include config.h first, then system includes, then libguile includes, in alphabetical order, then the include for the file in question.
Diffstat (limited to 'libguile/expand.c')
-rw-r--r--libguile/expand.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/libguile/expand.c b/libguile/expand.c
index 2a63d333d..40531c8aa 100644
--- a/libguile/expand.c
+++ b/libguile/expand.c
@@ -23,18 +23,17 @@
# include <config.h>
#endif
-#include "gsubr.h"
-#include "pairs.h"
-#include "boolean.h"
#include "alist.h"
+#include "boolean.h"
#include "continuations.h"
#include "eq.h"
-#include "expand.h"
+#include "gsubr.h"
#include "hashtab.h"
#include "keywords.h"
#include "list.h"
#include "macros.h"
#include "modules.h"
+#include "pairs.h"
#include "ports.h"
#include "print.h"
#include "srcprop.h"
@@ -44,6 +43,8 @@
#include "variable.h"
#include "vectors.h"
+#include "expand.h"
+