1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-24 12:20:20 +02:00

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.
This commit is contained in:
Andy Wingo 2018-06-20 18:31:24 +02:00
parent 3068bc7384
commit b8d757732f
117 changed files with 981 additions and 929 deletions

View file

@ -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.