mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-29 22:40:34 +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:
parent
3068bc7384
commit
b8d757732f
117 changed files with 981 additions and 929 deletions
|
@ -1,5 +1,5 @@
|
|||
/* Copyright (C) 1995, 1996, 1998-2003, 2005-2006,
|
||||
* 2009-2014, 2018 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1995,1996,1998-2003,2005-2006,2009-2014,2018
|
||||
* Free Software Foundation, Inc.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public License
|
||||
|
@ -24,31 +24,28 @@
|
|||
# include <config.h>
|
||||
#endif
|
||||
|
||||
#include "gsubr.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "bytevectors.h"
|
||||
#include "deprecation.h"
|
||||
#include "eval.h"
|
||||
#include "gsubr.h"
|
||||
#include "keywords.h"
|
||||
#include "modules.h"
|
||||
#include "ports.h"
|
||||
#include "procs.h"
|
||||
#include "read.h"
|
||||
#include "srfi-4.h"
|
||||
#include "strings.h"
|
||||
#include "symbols.h"
|
||||
#include "syscalls.h"
|
||||
#include "modules.h"
|
||||
#include "deprecation.h"
|
||||
#include "srfi-4.h"
|
||||
#include "threads.h"
|
||||
#include "variable.h"
|
||||
|
||||
#include "strports.h"
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue