summaryrefslogtreecommitdiff
path: root/libguile/error.c
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/error.c')
-rw-r--r--libguile/error.c21
1 files changed, 10 insertions, 11 deletions
diff --git a/libguile/error.c b/libguile/error.c
index 83b17e585..cc75b5076 100644
--- a/libguile/error.c
+++ b/libguile/error.c
@@ -24,13 +24,20 @@
# include <config.h>
#endif
-#include <stdlib.h>
-#include <stdio.h>
#include <errno.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+
+/* For Windows... */
+#ifdef HAVE_IO_H
+#include <io.h>
+#endif
-#include "gsubr.h"
#include "async.h"
#include "dynwind.h"
+#include "gsubr.h"
#include "list.h"
#include "modules.h"
#include "numbers.h"
@@ -41,15 +48,7 @@
#include "error.h"
-#ifdef HAVE_STRING_H
-#include <string.h>
-#endif
-#include <unistd.h>
-/* For Windows... */
-#ifdef HAVE_IO_H
-#include <io.h>
-#endif
/* {Errors and Exceptional Conditions}