summaryrefslogtreecommitdiff
path: root/libguile/eq.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/eq.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/eq.c')
-rw-r--r--libguile/eq.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/libguile/eq.c b/libguile/eq.c
index 3241f010e..4848b2608 100644
--- a/libguile/eq.c
+++ b/libguile/eq.c
@@ -22,22 +22,18 @@
#endif
#include <math.h>
-
-#ifdef HAVE_STRING_H
#include <string.h>
-#endif
-#include "gsubr.h"
-#include "boolean.h"
#include "array-map.h"
#include "async.h"
#include "bitvectors.h"
+#include "boolean.h"
#include "bytevectors.h"
-#include "eq.h"
#include "eval.h"
#include "foreign.h"
#include "generalized-arrays.h"
#include "goops.h"
+#include "gsubr.h"
#include "hashtab.h"
#include "pairs.h"
#include "private-options.h"
@@ -48,6 +44,9 @@
#include "syntax.h"
#include "vectors.h"
+#include "eq.h"
+
+
static SCM scm_i_eq_p (SCM x, SCM y, SCM rest);