diff options
author | Andy Wingo <wingo@pobox.com> | 2018-06-20 18:31:24 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-06-20 18:31:24 +0200 |
commit | b8d757732fae7c396d58327185f94e5d90846445 (patch) | |
tree | f7cc7ebe65b5722b74f519f0b4db8a0d95fbc528 /libguile/backtrace.c | |
parent | 3068bc738429286db225b618607848a5a40f82ce (diff) | |
download | guile-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/backtrace.c')
-rw-r--r-- | libguile/backtrace.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libguile/backtrace.c b/libguile/backtrace.c index b5c9ce097..943d8b67c 100644 --- a/libguile/backtrace.c +++ b/libguile/backtrace.c @@ -1,6 +1,6 @@ /* Printing of backtraces and error messages - * Copyright (C) 1996,1997,1998,1999,2000,2001, 2003, 2004, 2006, 2009, - * 2010, 2011, 2014, 2018 Free Software Foundation + * Copyright (C) 1996-2001,2003-2004,2006,2009-2011,2014,2018 + * Free Software Foundation * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -24,24 +24,22 @@ #include <stdio.h> #include <ctype.h> - -#include "gsubr.h" -#include "boolean.h" - #include <unistd.h> + #ifdef HAVE_IO_H #include <io.h> #endif -#include "backtrace.h" +#include "boolean.h" #include "deprecation.h" #include "dynwind.h" #include "eval.h" #include "filesys.h" #include "fluids.h" #include "frames.h" -#include "list.h" +#include "gsubr.h" #include "keywords.h" +#include "list.h" #include "modules.h" #include "numbers.h" #include "ports.h" @@ -56,6 +54,8 @@ #include "throw.h" #include "variable.h" +#include "backtrace.h" + /* {Error reporting and backtraces} * * Note that these functions shouldn't generate errors themselves. |