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/hashtab.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/hashtab.c')
-rw-r--r-- | libguile/hashtab.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/libguile/hashtab.c b/libguile/hashtab.c index c5510e018..b80cac431 100644 --- a/libguile/hashtab.c +++ b/libguile/hashtab.c @@ -24,25 +24,26 @@ #endif #include <alloca.h> -#include <stdio.h> #include <assert.h> +#include <stdio.h> -#include "gsubr.h" -#include "pairs.h" #include "alist.h" -#include "boolean.h" #include "bdw-gc.h" +#include "boolean.h" #include "eq.h" #include "eval.h" +#include "gsubr.h" #include "hash.h" -#include "hashtab.h" #include "list.h" #include "numbers.h" +#include "pairs.h" #include "ports.h" #include "procs.h" #include "vectors.h" #include "weak-table.h" +#include "hashtab.h" + |