diff options
Diffstat (limited to 'libguile/arrays.c')
-rw-r--r-- | libguile/arrays.c | 93 |
1 files changed, 44 insertions, 49 deletions
diff --git a/libguile/arrays.c b/libguile/arrays.c index 682fbf6b2..0a919515b 100644 --- a/libguile/arrays.c +++ b/libguile/arrays.c @@ -1,22 +1,21 @@ -/* Copyright (C) 1995,1996,1997,1998,2000,2001,2002,2003,2004,2005, - * 2006, 2009, 2010, 2011, 2012, 2013, 2014, 2015 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-2015,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/>. */ @@ -29,31 +28,33 @@ #include <errno.h> #include <string.h> +#include "array-map.h" +#include "bitvectors.h" +#include "boolean.h" +#include "bytevectors.h" +#include "chars.h" +#include "dynwind.h" +#include "eq.h" +#include "eval.h" +#include "feature.h" +#include "fports.h" +#include "generalized-arrays.h" +#include "generalized-vectors.h" +#include "gsubr.h" +#include "list.h" +#include "modules.h" +#include "numbers.h" +#include "pairs.h" +#include "procs.h" +#include "read.h" +#include "srfi-13.h" +#include "srfi-4.h" +#include "strings.h" +#include "uniform.h" +#include "vectors.h" #include "verify.h" -#include "libguile/_scm.h" -#include "libguile/__scm.h" -#include "libguile/eq.h" -#include "libguile/chars.h" -#include "libguile/eval.h" -#include "libguile/fports.h" -#include "libguile/feature.h" -#include "libguile/strings.h" -#include "libguile/srfi-13.h" -#include "libguile/srfi-4.h" -#include "libguile/vectors.h" -#include "libguile/bitvectors.h" -#include "libguile/bytevectors.h" -#include "libguile/list.h" -#include "libguile/dynwind.h" -#include "libguile/read.h" - -#include "libguile/validate.h" -#include "libguile/arrays.h" -#include "libguile/array-map.h" -#include "libguile/generalized-vectors.h" -#include "libguile/generalized-arrays.h" -#include "libguile/uniform.h" +#include "arrays.h" size_t @@ -958,12 +959,6 @@ scm_init_arrays () { scm_add_feature ("array"); -#include "libguile/arrays.x" +#include "arrays.x" } - -/* - Local Variables: - c-file-style: "gnu" - End: -*/ |