diff options
author | Andy Wingo <wingo@pobox.com> | 2018-06-20 18:31:24 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-06-20 18:31:24 +0200 |
commit | b8d757732fae7c396d58327185f94e5d90846445 (patch) | |
tree | f7cc7ebe65b5722b74f519f0b4db8a0d95fbc528 /libguile/fluids.c | |
parent | 3068bc738429286db225b618607848a5a40f82ce (diff) | |
download | guile-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/fluids.c')
-rw-r--r-- | libguile/fluids.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libguile/fluids.c b/libguile/fluids.c index e10289d14..1f853b472 100644 --- a/libguile/fluids.c +++ b/libguile/fluids.c @@ -24,8 +24,6 @@ #include <stdio.h> #include <string.h> -#include "gsubr.h" -#include "pairs.h" #include "alist.h" #include "atomics-internal.h" #include "bdw-gc.h" @@ -33,13 +31,17 @@ #include "deprecation.h" #include "dynwind.h" #include "eval.h" -#include "fluids.h" +#include "gsubr.h" #include "hashtab.h" #include "list.h" +#include "pairs.h" #include "ports.h" #include "print.h" -#include "weak-table.h" #include "variable.h" +#include "weak-table.h" + +#include "fluids.h" + /* A dynamic state associates fluids with values. There are two representations of a dynamic state in Guile: the active |