1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

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>.
This commit is contained in:
Andy Wingo 2018-06-19 11:51:57 +02:00
parent 05f3977a92
commit 1e792c6580
7 changed files with 8 additions and 3 deletions

View file

@ -24,6 +24,7 @@
#endif
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>

View file

@ -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>

View file

@ -25,6 +25,7 @@
#endif
#include <string.h>
#include <stdio.h>
#include "libguile/__scm.h"
#include "libguile/pairs.h"

View file

@ -26,7 +26,6 @@
#include "libguile/__scm.h"
#include <stdio.h>
#include <unistd.h>
#include "libguile/gc.h"
#include "libguile/tags.h"

View file

@ -24,6 +24,7 @@
#endif
#include <stdio.h>
#include <string.h>
#include <unictype.h>

View file

@ -24,6 +24,7 @@
#include <alloca.h>
#include <assert.h>
#include <stdarg.h>
#define SCM_BUILDING_DEPRECATED_CODE

View file

@ -25,6 +25,7 @@
#include <errno.h>
#include <math.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>