diff options
Diffstat (limited to 'srfi')
-rw-r--r-- | srfi/srfi-1.c | 2 | ||||
-rw-r--r-- | srfi/srfi-13.c | 8 | ||||
-rw-r--r-- | srfi/srfi-14.c | 8 | ||||
-rw-r--r-- | srfi/srfi-4.c | 8 | ||||
-rw-r--r-- | srfi/srfi-60.c | 8 |
5 files changed, 25 insertions, 9 deletions
diff --git a/srfi/srfi-1.c b/srfi/srfi-1.c index 35815b32f..dc218ab04 100644 --- a/srfi/srfi-1.c +++ b/srfi/srfi-1.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H # include <config.h> #endif diff --git a/srfi/srfi-13.c b/srfi/srfi-13.c index 64331f37e..dd5ce9b15 100644 --- a/srfi/srfi-13.c +++ b/srfi/srfi-13.c @@ -1,6 +1,6 @@ /* srfi-13.c --- old place of SRFI-13 procedures for Guile * - * Copyright (C) 2001, 2004, 2006 Free Software Foundation, Inc. + * Copyright (C) 2001, 2004, 2006, 2008 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 @@ -23,7 +23,11 @@ since people might still be linking with it. */ -#include "srfi/srfi-13.h" +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#include <srfi/srfi-13.h> void scm_init_srfi_13 (void) diff --git a/srfi/srfi-14.c b/srfi/srfi-14.c index fe5e049d1..1a7297b82 100644 --- a/srfi/srfi-14.c +++ b/srfi/srfi-14.c @@ -1,6 +1,6 @@ /* srfi-14.c --- Old place of SRFI-14 procedures for Guile * - * Copyright (C) 2001, 2004, 2006 Free Software Foundation, Inc. + * Copyright (C) 2001, 2004, 2006, 2008 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 @@ -17,7 +17,11 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "srfi/srfi-14.h" +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#include <srfi/srfi-14.h> void scm_init_srfi_14 (void) diff --git a/srfi/srfi-4.c b/srfi/srfi-4.c index b4486a568..f40c6b319 100644 --- a/srfi/srfi-4.c +++ b/srfi/srfi-4.c @@ -1,6 +1,6 @@ /* srfi-4.c --- Homogeneous numeric vector datatypes. * - * Copyright (C) 2001, 2004, 2006 Free Software Foundation, Inc. + * Copyright (C) 2001, 2004, 2006, 2008 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 @@ -22,7 +22,11 @@ since people might still be linking with it. */ -#include "srfi/srfi-4.h" +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#include <srfi/srfi-4.h> void scm_init_srfi_4 (void) diff --git a/srfi/srfi-60.c b/srfi/srfi-60.c index b90306a8e..7d89ca039 100644 --- a/srfi/srfi-60.c +++ b/srfi/srfi-60.c @@ -1,6 +1,6 @@ /* srfi-60.c --- Integers as Bits * - * Copyright (C) 2005, 2006 Free Software Foundation, Inc. + * Copyright (C) 2005, 2006, 2008 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 @@ -17,8 +17,12 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + #include <libguile.h> -#include "srfi-60.h" +#include <srfi/srfi-60.h> SCM_DEFINE (scm_srfi60_log2_binary_factors, "log2-binary-factors", 1, 0, 0, |