summaryrefslogtreecommitdiff
path: root/libguile/regex-posix.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2018-06-20 18:31:24 +0200
committerAndy Wingo <wingo@pobox.com>2018-06-20 18:31:24 +0200
commitb8d757732fae7c396d58327185f94e5d90846445 (patch)
treef7cc7ebe65b5722b74f519f0b4db8a0d95fbc528 /libguile/regex-posix.c
parent3068bc738429286db225b618607848a5a40f82ce (diff)
downloadguile-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/regex-posix.c')
-rw-r--r--libguile/regex-posix.c18
1 files changed, 8 insertions, 10 deletions
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 <config.h>
#endif
+#include <regex.h>
#include <string.h>
#include <sys/types.h>
-#include "gsubr.h"
-#include "pairs.h"
-
-#include <regex.h>
-
#ifdef HAVE_WCHAR_H
#include <wchar.h>
#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"