diff options
Diffstat (limited to 'libguile/procprop.c')
-rw-r--r-- | libguile/procprop.c | 73 |
1 files changed, 37 insertions, 36 deletions
diff --git a/libguile/procprop.c b/libguile/procprop.c index ad56bd5ba..89cc6c2f7 100644 --- a/libguile/procprop.c +++ b/libguile/procprop.c @@ -1,41 +1,48 @@ -/* Copyright (C) 1995,1996,1998,2000,2001,2003,2004, 2006, 2008, 2009, 2010, 2011, 2012, 2013 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-1996,1998,2000-2001,2003-2004,2006,2008-2013,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/>. */ + #ifdef HAVE_CONFIG_H # include <config.h> #endif -#include "libguile/_scm.h" +#include "alist.h" +#include "boolean.h" +#include "eval.h" +#include "gsubr.h" +#include "list.h" +#include "numbers.h" +#include "pairs.h" +#include "procs.h" +#include "programs.h" +#include "smob.h" +#include "symbols.h" +#include "threads.h" +#include "vectors.h" +#include "vm-builtins.h" +#include "weak-table.h" + +#include "procprop.h" -#include "libguile/alist.h" -#include "libguile/eval.h" -#include "libguile/procs.h" -#include "libguile/gsubr.h" -#include "libguile/smob.h" -#include "libguile/vectors.h" -#include "libguile/weak-table.h" -#include "libguile/programs.h" -#include "libguile/vm-builtins.h" -#include "libguile/validate.h" -#include "libguile/procprop.h" SCM_GLOBAL_SYMBOL (scm_sym_system_procedure, "system-procedure"); @@ -334,13 +341,7 @@ scm_init_procprop () { overrides = scm_c_make_weak_table (0, SCM_WEAK_TABLE_KIND_KEY); arity_overrides = scm_c_make_weak_table (0, SCM_WEAK_TABLE_KIND_KEY); -#include "libguile/procprop.x" +#include "procprop.x" scm_init_vm_builtin_properties (); } - -/* - Local Variables: - c-file-style: "gnu" - End: -*/ |