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
|
@ -27,27 +27,26 @@
|
|||
#include <errno.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "eval.h"
|
||||
#include "stime.h"
|
||||
#include "stackchk.h"
|
||||
#include "struct.h"
|
||||
#include "smob.h"
|
||||
#include "arrays.h"
|
||||
#include "async.h"
|
||||
#include "ports.h"
|
||||
#include "strings.h"
|
||||
#include "vectors.h"
|
||||
#include "hashtab.h"
|
||||
|
||||
#include "deprecation.h"
|
||||
#include "gc.h"
|
||||
|
||||
#ifdef GUILE_DEBUG_MALLOC
|
||||
#include "debug-malloc.h"
|
||||
#endif
|
||||
#include "deprecation.h"
|
||||
#include "eval.h"
|
||||
#include "hashtab.h"
|
||||
#include "ports.h"
|
||||
#include "smob.h"
|
||||
#include "stackchk.h"
|
||||
#include "stime.h"
|
||||
#include "strings.h"
|
||||
#include "struct.h"
|
||||
#include "vectors.h"
|
||||
|
||||
#include "gc.h"
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
/*
|
||||
INIT_MALLOC_LIMIT is the initial amount of malloc usage which will
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue