diff options
author | Andy Wingo <wingo@pobox.com> | 2018-06-20 18:31:24 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-06-20 18:31:24 +0200 |
commit | b8d757732fae7c396d58327185f94e5d90846445 (patch) | |
tree | f7cc7ebe65b5722b74f519f0b4db8a0d95fbc528 /libguile/debug-malloc.c | |
parent | 3068bc738429286db225b618607848a5a40f82ce (diff) | |
download | guile-b8d757732fae7c396d58327185f94e5d90846445.tar.gz |
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.
Diffstat (limited to 'libguile/debug-malloc.c')
-rw-r--r-- | libguile/debug-malloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/debug-malloc.c b/libguile/debug-malloc.c index 5e224da93..409d85a25 100644 --- a/libguile/debug-malloc.c +++ b/libguile/debug-malloc.c @@ -23,13 +23,14 @@ #include <string.h> #include <stdio.h> -#include "gsubr.h" #include "alist.h" +#include "gsubr.h" #include "numbers.h" #include "strings.h" #include "debug-malloc.h" + /* * The following code is a hack which I wrote quickly in order to * solve a memory leak problem. Since I wanted to have the |