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/srfi-1.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/srfi-1.c')
-rw-r--r-- | libguile/srfi-1.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/libguile/srfi-1.c b/libguile/srfi-1.c index 2377f7bbe..6d17601cf 100644 --- a/libguile/srfi-1.c +++ b/libguile/srfi-1.c @@ -1,7 +1,7 @@ /* srfi-1.c --- SRFI-1 procedures for Guile * - * Copyright (C) 1995-1997, 2000-2003, 2005, 2006, 2008-2011, 2013 - * 2014, 2018 Free Software Foundation, Inc. + * Copyright (C) 1995-1997,2000-2003,2005-2006,2008-2011,2013-2014,2018 + * Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -19,25 +19,27 @@ * 02110-1301 USA */ + + #ifdef HAVE_CONFIG_H # include <config.h> #endif -#include "gsubr.h" -#include "pairs.h" +#include <stdarg.h> + #include "boolean.h" #include "eq.h" - -#include "list.h" #include "eval.h" +#include "extensions.h" +#include "gsubr.h" +#include "list.h" +#include "pairs.h" #include "procs.h" -#include "srfi-1.h" #include "values.h" #include "vectors.h" -#include "extensions.h" -#include <stdarg.h> +#include "srfi-1.h" /* The intent of this file was to gradually replace those Scheme |