diff options
Diffstat (limited to 'libguile/trees.c')
-rw-r--r-- | libguile/trees.c | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/libguile/trees.c b/libguile/trees.c index 88adf8820..32ff984fa 100644 --- a/libguile/trees.c +++ b/libguile/trees.c @@ -1,21 +1,21 @@ -/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010 - * 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-2010,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/>. */ @@ -23,16 +23,16 @@ # include <config.h> #endif -#include "libguile/_scm.h" -#include "libguile/eq.h" +#include <stdarg.h> -#include "libguile/validate.h" -#include "libguile/list.h" -#include "libguile/vectors.h" -#include "libguile/srcprop.h" -#include "libguile/trees.h" +#include "eq.h" +#include "gsubr.h" +#include "list.h" +#include "pairs.h" +#include "srcprop.h" +#include "vectors.h" -#include <stdarg.h> +#include "trees.h" /* scm_copy_tree creates deep copies of pairs and vectors, but not of any other @@ -206,5 +206,5 @@ copy_tree (struct t_trace *const hare, void scm_init_trees () { -#include "libguile/trees.x" +#include "trees.x" } |