diff options
Diffstat (limited to 'libguile/procs.c')
-rw-r--r-- | libguile/procs.c | 68 |
1 files changed, 32 insertions, 36 deletions
diff --git a/libguile/procs.c b/libguile/procs.c index 2329f4a1b..1b5aff430 100644 --- a/libguile/procs.c +++ b/libguile/procs.c @@ -1,21 +1,21 @@ -/* Copyright (C) 1995, 1996, 1997, 1999, 2000, 2001, 2006, 2008, 2009, - * 2010, 2011, 2012, 2013, 2017 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-1997,1999-2001,2006,2008-2013,2017-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,20 +23,22 @@ # include <config.h> #endif -#include "libguile/_scm.h" +#include "deprecation.h" +#include "goops.h" +#include "gsubr.h" +#include "loader.h" +#include "procprop.h" +#include "programs.h" +#include "smob.h" +#include "strings.h" +#include "struct.h" +#include "symbols.h" +#include "vectors.h" -#include "libguile/strings.h" -#include "libguile/vectors.h" -#include "libguile/smob.h" -#include "libguile/deprecation.h" +#include "procs.h" -#include "libguile/validate.h" -#include "libguile/procs.h" -#include "libguile/procprop.h" -#include "libguile/loader.h" -#include "libguile/programs.h" - + /* {Procedures} */ @@ -130,11 +132,5 @@ scm_init_procs () 1, SCM_UNPACK (scm_from_latin1_symbol ("pwpw"))); -#include "libguile/procs.x" +#include "procs.x" } - -/* - Local Variables: - c-file-style: "gnu" - End: -*/ |