diff options
Diffstat (limited to 'libguile/options.c')
-rw-r--r-- | libguile/options.c | 57 |
1 files changed, 29 insertions, 28 deletions
diff --git a/libguile/options.c b/libguile/options.c index 2d7e18f65..8241ad8ec 100644 --- a/libguile/options.c +++ b/libguile/options.c @@ -1,31 +1,38 @@ -/* Copyright (C) 1995,1996,1998,2000,2001, 2006, 2008, 2009, 2010, 2011 Free Software Foundation - * - * 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,2006,2008-2011,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 "libguile/mallocs.h" -#include "libguile/strings.h" +#include "boolean.h" +#include "list.h" +#include "mallocs.h" +#include "numbers.h" +#include "pairs.h" +#include "strings.h" +#include "symbols.h" + +#include "options.h" + -#include "libguile/options.h" /* {Run-time options} @@ -274,11 +281,5 @@ scm_init_opts (SCM (*func) (SCM), scm_t_option options[]) void scm_init_options () { -#include "libguile/options.x" +#include "options.x" } - -/* - Local Variables: - c-file-style: "gnu" - End: -*/ |