mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-16 16:50:21 +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
|
@ -26,22 +26,20 @@
|
|||
#include <alloca.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "gsubr.h"
|
||||
#include "pairs.h"
|
||||
#include "boolean.h"
|
||||
#include "alist.h"
|
||||
#include "async.h"
|
||||
#include "boolean.h"
|
||||
#include "continuations.h"
|
||||
#include "control.h"
|
||||
#include "debug.h"
|
||||
#include "deprecation.h"
|
||||
#include "dynwind.h"
|
||||
#include "eq.h"
|
||||
#include "eval.h"
|
||||
#include "expand.h"
|
||||
#include "feature.h"
|
||||
#include "fluids.h"
|
||||
#include "goops.h"
|
||||
#include "gsubr.h"
|
||||
#include "hash.h"
|
||||
#include "hashtab.h"
|
||||
#include "keywords.h"
|
||||
|
@ -50,6 +48,7 @@
|
|||
#include "memoize.h"
|
||||
#include "modules.h"
|
||||
#include "numbers.h"
|
||||
#include "pairs.h"
|
||||
#include "ports.h"
|
||||
#include "print.h"
|
||||
#include "private-options.h"
|
||||
|
@ -67,9 +66,11 @@
|
|||
#include "vectors.h"
|
||||
#include "vm.h"
|
||||
|
||||
|
||||
#include "eval.h"
|
||||
|
||||
|
||||
|
||||
|
||||
/* We have three levels of EVAL here:
|
||||
|
||||
- eval (exp, env)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue