mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-24 20:30:28 +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
|
@ -24,8 +24,6 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "gsubr.h"
|
||||
#include "pairs.h"
|
||||
#include "alist.h"
|
||||
#include "atomics-internal.h"
|
||||
#include "bdw-gc.h"
|
||||
|
@ -33,13 +31,17 @@
|
|||
#include "deprecation.h"
|
||||
#include "dynwind.h"
|
||||
#include "eval.h"
|
||||
#include "fluids.h"
|
||||
#include "gsubr.h"
|
||||
#include "hashtab.h"
|
||||
#include "list.h"
|
||||
#include "pairs.h"
|
||||
#include "ports.h"
|
||||
#include "print.h"
|
||||
#include "weak-table.h"
|
||||
#include "variable.h"
|
||||
#include "weak-table.h"
|
||||
|
||||
#include "fluids.h"
|
||||
|
||||
|
||||
/* A dynamic state associates fluids with values. There are two
|
||||
representations of a dynamic state in Guile: the active
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue