diff options
Diffstat (limited to 'libguile/extensions.c')
-rw-r--r-- | libguile/extensions.c | 60 |
1 files changed, 27 insertions, 33 deletions
diff --git a/libguile/extensions.c b/libguile/extensions.c index ab108930d..a094159d4 100644 --- a/libguile/extensions.c +++ b/libguile/extensions.c @@ -1,23 +1,21 @@ -/* extensions.c - registering and loading extensions. - * - * Copyright (C) 2001, 2002, 2004, 2006, 2009-2011, 2018 - * 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 2001,2002,2004,2006,2009-2011,2018-2019 + 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> @@ -25,13 +23,15 @@ #include <string.h> -#include "libguile/_scm.h" -#include "libguile/strings.h" -#include "libguile/gc.h" -#include "libguile/dynl.h" -#include "libguile/dynwind.h" +#include "dynl.h" +#include "dynwind.h" +#include "gc.h" +#include "gsubr.h" +#include "strings.h" +#include "threads.h" + +#include "extensions.h" -#include "libguile/extensions.h" typedef struct extension_t { @@ -173,11 +173,5 @@ SCM_DEFINE (scm_load_extension, "load-extension", 2, 0, 0, void scm_init_extensions () { -#include "libguile/extensions.x" +#include "extensions.x" } - -/* - Local Variables: - c-file-style: "gnu" - End: -*/ |