diff options
author | Andy Wingo <wingo@pobox.com> | 2018-06-19 11:51:57 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-06-19 11:51:57 +0200 |
commit | 1e792c65801eba50611c80e7168abdbb858a2f10 (patch) | |
tree | 1658a70a6171748c685a42db4845abde39b10d38 /libguile/guile.c | |
parent | 05f3977a92a7226d3a307d15d7e485c1e8a55af8 (diff) | |
download | guile-1e792c65801eba50611c80e7168abdbb858a2f10.tar.gz |
Remove <stdio.h> from ports.h
* libguile/ports.h: Remove <stdio.h>.
* libguile/finalizers.c:
* libguile/guile.c:
* libguile/memoize.c:
* libguile/srfi-14.c:
* libguile/vm.c: Add <stdio.h>.
* libguile/struct.c: Add <stdarg.h>.
Diffstat (limited to 'libguile/guile.c')
-rw-r--r-- | libguile/guile.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libguile/guile.c b/libguile/guile.c index f827d2642..c0472680b 100644 --- a/libguile/guile.c +++ b/libguile/guile.c @@ -1,5 +1,5 @@ -/* Copyright (C) 1996, 1997, 2000, 2001, 2006, 2008, - * 2011, 2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-1997,2000-2001,2006,2008,2011,2013,2018 + * Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -38,6 +38,7 @@ #endif #include <ltdl.h> #include <locale.h> +#include <stdio.h> #ifdef HAVE_WINSOCK2_H #include <winsock2.h> |