diff options
Diffstat (limited to 'libguile/array-handle.c')
-rw-r--r-- | libguile/array-handle.c | 59 |
1 files changed, 31 insertions, 28 deletions
diff --git a/libguile/array-handle.c b/libguile/array-handle.c index 947462a59..4b69e67a1 100644 --- a/libguile/array-handle.c +++ b/libguile/array-handle.c @@ -1,21 +1,21 @@ -/* Copyright (C) 1995,1996,1997,1998,2000,2001,2002,2003,2004, 2005, - * 2006, 2009, 2011, 2013, 2014 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 - * as published by the Free Software Foundation; either version 3 of - * the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - * 02110-1301 USA - */ +/* Copyright 1995-1998,2000-2006,2009,2011,2013-2014,2018 + Free Software Foundation, Inc. + + This file is part of Guile. + + Guile is free software: you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Guile is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with Guile. If not, see + <https://www.gnu.org/licenses/>. */ @@ -24,10 +24,19 @@ # include <config.h> #endif -#include "libguile/_scm.h" -#include "libguile/__scm.h" +#include <string.h> + +#include "arrays.h" +#include "bitvectors.h" +#include "bytevectors.h" +#include "list.h" +#include "numbers.h" +#include "pairs.h" +#include "strings.h" +#include "symbols.h" +#include "vectors.h" -#include "libguile/array-handle.h" +#include "array-handle.h" SCM scm_i_array_element_types[SCM_ARRAY_ELEMENT_TYPE_LAST + 1]; @@ -365,11 +374,5 @@ scm_init_array_handle (void) DEFINE_ARRAY_TYPE (c32, C32); DEFINE_ARRAY_TYPE (c64, C64); -#include "libguile/array-handle.x" +#include "array-handle.x" } - -/* - Local Variables: - c-file-style: "gnu" - End: -*/ |