Change Guile license to LGPLv3+
[bpt/guile.git] / srfi / srfi-4.c
CommitLineData
71ca65d9
MG
1/* srfi-4.c --- Homogeneous numeric vector datatypes.
2 *
dbb605f5 3 * Copyright (C) 2001, 2004, 2006, 2008 Free Software Foundation, Inc.
645f5e0e 4 *
73be1d9e 5 * This library is free software; you can redistribute it and/or
53befeb7
NJ
6 * modify it under the terms of the GNU Lesser General Public License
7 * as published by the Free Software Foundation; either version 3 of
8 * the License, or (at your option) any later version.
645f5e0e 9 *
53befeb7
NJ
10 * This library is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
71ca65d9 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
73be1d9e 13 * Lesser General Public License for more details.
645f5e0e 14 *
73be1d9e
MV
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
53befeb7
NJ
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301 USA
73be1d9e 19 */
71ca65d9 20
0d0f372f
MV
21/* This file is now empty since all its procedures are now in the
22 core. We keep the libguile-srfi-srfi-4.so library around anyway
23 since people might still be linking with it.
24*/
71ca65d9 25
dbb605f5
LC
26#ifdef HAVE_CONFIG_H
27# include <config.h>
28#endif
29
30#include <srfi/srfi-4.h>
71ca65d9 31
71ca65d9
MG
32void
33scm_init_srfi_4 (void)
34{
71ca65d9 35}
2c4df451
MG
36
37/* End of srfi-4.c. */