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/stacks.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/stacks.c')
-rw-r--r-- | libguile/stacks.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/libguile/stacks.c b/libguile/stacks.c index 690de5730..498edd62b 100644 --- a/libguile/stacks.c +++ b/libguile/stacks.c @@ -19,31 +19,32 @@ + #ifdef HAVE_CONFIG_H # include <config.h> #endif -#include "gsubr.h" #include "boolean.h" +#include "continuations.h" #include "control.h" -#include "eval.h" #include "debug.h" -#include "continuations.h" +#include "eval.h" #include "fluids.h" +#include "frames.h" /* vm frames */ +#include "gsubr.h" #include "list.h" -#include "struct.h" #include "macros.h" +#include "modules.h" #include "numbers.h" #include "pairs.h" +#include "private-options.h" #include "procprop.h" -#include "modules.h" #include "strings.h" +#include "struct.h" #include "symbols.h" #include "vm.h" /* to capture vm stacks */ -#include "frames.h" /* vm frames */ #include "stacks.h" -#include "private-options.h" static SCM scm_sys_stacks; |