mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03: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
|
@ -18,40 +18,41 @@
|
|||
*/
|
||||
|
||||
|
||||
|
||||
/* Original Author: Mikael Djurfeldt <djurfeldt@nada.kth.se> */
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
|
||||
#include <gmp.h>
|
||||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "gsubr.h"
|
||||
#include "smob.h"
|
||||
#include "generalized-arrays.h"
|
||||
#include "list.h"
|
||||
#include "numbers.h"
|
||||
#include <gmp.h>
|
||||
|
||||
#include "arrays.h"
|
||||
#include "feature.h"
|
||||
#include "generalized-arrays.h"
|
||||
#include "generalized-vectors.h"
|
||||
#include "gsubr.h"
|
||||
#include "list.h"
|
||||
#include "modules.h"
|
||||
#include "numbers.h"
|
||||
#include "numbers.h"
|
||||
#include "pairs.h"
|
||||
#include "smob.h"
|
||||
#include "srfi-4.h"
|
||||
#include "stime.h"
|
||||
#include "strings.h"
|
||||
#include "symbols.h"
|
||||
#include "arrays.h"
|
||||
#include "srfi-4.h"
|
||||
#include "variable.h"
|
||||
#include "vectors.h"
|
||||
#include "generalized-vectors.h"
|
||||
|
||||
#include "random.h"
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* A plugin interface for RNGs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue