diff options
Diffstat (limited to 'libguile.h')
-rw-r--r-- | libguile.h | 43 |
1 files changed, 23 insertions, 20 deletions
diff --git a/libguile.h b/libguile.h index 3f7f0b791..53479d858 100644 --- a/libguile.h +++ b/libguile.h @@ -1,23 +1,25 @@ #ifndef SCM_LIBGUILE_H #define SCM_LIBGUILE_H -/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2002, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2012, 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-2004,2006,2008-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/>. */ + /* This needs to be included outside of the extern "C" block. @@ -28,7 +30,7 @@ extern "C" { #endif -#include "libguile/__scm.h" +#include "libguile/scm.h" #include "libguile/alist.h" #include "libguile/array-handle.h" #include "libguile/array-map.h" @@ -39,6 +41,7 @@ extern "C" { #include "libguile/bitvectors.h" #include "libguile/bytevectors.h" #include "libguile/chars.h" +#include "libguile/chooks.h" #include "libguile/continuations.h" #include "libguile/dynl.h" #include "libguile/dynwind.h" @@ -55,6 +58,7 @@ extern "C" { #include "libguile/foreign.h" #include "libguile/foreign-object.h" #include "libguile/fports.h" +#include "libguile/frames.h" #include "libguile/gc.h" #include "libguile/generalized-arrays.h" #include "libguile/generalized-vectors.h" @@ -105,16 +109,15 @@ extern "C" { #include "libguile/strports.h" #include "libguile/struct.h" #include "libguile/symbols.h" -#include "libguile/tags.h" #include "libguile/throw.h" #include "libguile/trees.h" #include "libguile/uniform.h" -#include "libguile/validate.h" #include "libguile/values.h" #include "libguile/variable.h" #include "libguile/vectors.h" #include "libguile/srfi-4.h" #include "libguile/version.h" +#include "libguile/vm.h" #include "libguile/vports.h" #include "libguile/weak-set.h" #include "libguile/weak-table.h" |