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/regex-posix.c | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'libguile/regex-posix.c') diff --git a/libguile/regex-posix.c b/libguile/regex-posix.c index 17768770d..37f836a07 100644 --- a/libguile/regex-posix.c +++ b/libguile/regex-posix.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2001,2004,2006-2007,2010-2012,2018 +/* Copyright (C) 1997-2001,2004,2006-2007,2010-2012,2018 * Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or @@ -32,29 +32,27 @@ # include #endif +#include #include #include -#include "gsubr.h" -#include "pairs.h" - -#include - #ifdef HAVE_WCHAR_H #include #endif #include "async.h" +#include "feature.h" +#include "gsubr.h" #include "list.h" #include "modules.h" #include "numbers.h" +#include "pairs.h" +#include "ports.h" #include "smob.h" +#include "strings.h" +#include "strports.h" #include "symbols.h" #include "vectors.h" -#include "strports.h" -#include "ports.h" -#include "feature.h" -#include "strings.h" #include "regex-posix.h" -- cgit v1.2.1