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/read.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/read.c')
-rw-r--r-- | libguile/read.c | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/libguile/read.c b/libguile/read.c index 72151c4a6..302c3bcc2 100644 --- a/libguile/read.c +++ b/libguile/read.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-1997, 1999-2001, 2003-2004, 2006-2012, 2014-2015, 2018 +/* Copyright (C) 1995-1997,1999-2001,2003-2004,2006-2012,2014-2015,2018 * Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or @@ -24,45 +24,45 @@ # include <config.h> #endif +#include <alloca.h> +#include <c-ctype.h> +#include <c-strcase.h> #include <stdio.h> #include <string.h> -#include <unistd.h> #include <unicase.h> #include <unictype.h> -#include <c-strcase.h> -#include <c-ctype.h> -#include <alloca.h> +#include <unistd.h> -#include "gsubr.h" -#include "pairs.h" +#include "alist.h" +#include "arrays.h" +#include "bitvectors.h" #include "boolean.h" #include "bytevectors.h" #include "chars.h" -#include "eval.h" -#include "arrays.h" -#include "bitvectors.h" -#include "keywords.h" -#include "alist.h" -#include "srcprop.h" -#include "hashtab.h" -#include "hash.h" #include "eq.h" +#include "eval.h" #include "fluids.h" +#include "fports.h" +#include "gsubr.h" +#include "hash.h" +#include "hashtab.h" +#include "keywords.h" #include "modules.h" #include "numbers.h" -#include "ports.h" +#include "pairs.h" #include "ports-internal.h" -#include "fports.h" +#include "ports.h" +#include "private-options.h" +#include "srcprop.h" +#include "srfi-13.h" +#include "srfi-4.h" #include "strings.h" #include "strports.h" +#include "symbols.h" #include "variable.h" #include "vectors.h" -#include "srfi-4.h" -#include "srfi-13.h" -#include "symbols.h" #include "read.h" -#include "private-options.h" |