From b8d757732fae7c396d58327185f94e5d90846445 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Wed, 20 Jun 2018 18:31:24 +0200 Subject: 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. --- libguile/generalized-arrays.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'libguile/generalized-arrays.c') diff --git a/libguile/generalized-arrays.c b/libguile/generalized-arrays.c index 7eab6c273..d7f1ad32a 100644 --- a/libguile/generalized-arrays.c +++ b/libguile/generalized-arrays.c @@ -20,19 +20,20 @@ #ifdef HAVE_CONFIG_H -# include +# include #endif -#include #include +#include #include -#include "gsubr.h" -#include "pairs.h" #include "array-handle.h" -#include "generalized-arrays.h" +#include "gsubr.h" #include "list.h" #include "numbers.h" +#include "pairs.h" + +#include "generalized-arrays.h" SCM_INTERNAL SCM scm_i_array_ref (SCM v, -- cgit v1.2.3