1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

Include <config.h> in SRFI-1.

This commit is contained in:
Ludovic Courtès 2008-04-27 00:50:05 +02:00
parent 56ae214817
commit a030cb4b16
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2008-04-27 Ludovic Courtès <ludo@gnu.org>
* srfi-1.c: Include <config.h>.
2008-04-26 Ludovic Courtès <ludo@gnu.org> 2008-04-26 Ludovic Courtès <ludo@gnu.org>
* srfi-35.scm: Provide `srfi-35' through `cond-expand-provide'. * srfi-35.scm: Provide `srfi-35' through `cond-expand-provide'.

View file

@ -1,6 +1,6 @@
/* srfi-1.c --- SRFI-1 procedures for Guile /* srfi-1.c --- SRFI-1 procedures for Guile
* *
* Copyright (C) 1995, 1996, 1997, 2000, 2001, 2002, 2003, 2005, 2006 * Copyright (C) 1995, 1996, 1997, 2000, 2001, 2002, 2003, 2005, 2006, 2008
* Free Software Foundation, Inc. * Free Software Foundation, Inc.
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
@ -18,6 +18,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <libguile.h> #include <libguile.h>
#include <libguile/lang.h> #include <libguile/lang.h>