diff options
author | Andy Wingo <wingo@pobox.com> | 2018-06-20 17:19:31 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-06-20 17:19:31 +0200 |
commit | 3068bc738429286db225b618607848a5a40f82ce (patch) | |
tree | 08c08d876f01a3e48c3352821a47275309bd0402 /libguile/guile.c | |
parent | 51e36329d8055dd61f6fcb211fc200abb7299934 (diff) | |
download | guile-3068bc738429286db225b618607848a5a40f82ce.tar.gz |
Make libguile header inclusion consistent within libguile c files
Change from '#include "libguile/foo.h"' and '#include <libguile/foo.h>'
to '#include "foo.h"'.
Diffstat (limited to 'libguile/guile.c')
-rw-r--r-- | libguile/guile.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/libguile/guile.c b/libguile/guile.c index 08b738f23..2ab310348 100644 --- a/libguile/guile.c +++ b/libguile/guile.c @@ -28,14 +28,6 @@ # include <config.h> #endif -#ifdef __MINGW32__ -# define SCM_IMPORT 1 -#endif -#include <libguile.h> - -#ifdef HAVE_CONFIG_H -#include <libguile/scmconfig.h> -#endif #include <ltdl.h> #include <locale.h> #include <stdio.h> @@ -44,6 +36,8 @@ #include <winsock2.h> #endif +#include <libguile.h> + static void inner_main (void *closure SCM_UNUSED, int argc, char **argv) { |