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/modules.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/modules.c')
-rw-r--r-- | libguile/modules.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libguile/modules.c b/libguile/modules.c index 40779293a..a751c2edb 100644 --- a/libguile/modules.c +++ b/libguile/modules.c @@ -24,25 +24,25 @@ #include <stdarg.h> -#include "gsubr.h" -#include "pairs.h" #include "boolean.h" - +#include "deprecation.h" #include "eval.h" +#include "fluids.h" +#include "gsubr.h" +#include "hashtab.h" +#include "keywords.h" #include "list.h" -#include "smob.h" +#include "pairs.h" #include "procprop.h" -#include "vectors.h" -#include "keywords.h" -#include "hashtab.h" +#include "smob.h" #include "struct.h" #include "symbols.h" #include "variable.h" -#include "fluids.h" -#include "deprecation.h" +#include "vectors.h" #include "modules.h" + int scm_module_system_booted_p = 0; scm_t_bits scm_module_tag; |