diff options
Diffstat (limited to 'libguile/objprop.c')
-rw-r--r-- | libguile/objprop.c | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/libguile/objprop.c b/libguile/objprop.c index e9ddbe4d9..0fffec75d 100644 --- a/libguile/objprop.c +++ b/libguile/objprop.c @@ -1,33 +1,39 @@ -/* Copyright (C) 1995,1996, 2000, 2001, 2003, 2006, 2008, 2009, 2010, 2011 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,2000-2001,2003,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/async.h" -#include "libguile/hashtab.h" -#include "libguile/alist.h" +#include "alist.h" +#include "async.h" +#include "gsubr.h" +#include "hashtab.h" +#include "pairs.h" +#include "weak-table.h" + +#include "objprop.h" + -#include "libguile/objprop.h" /* {Object Properties} @@ -94,12 +100,6 @@ void scm_init_objprop () { object_whash = scm_c_make_weak_table (0, SCM_WEAK_TABLE_KIND_KEY); -#include "libguile/objprop.x" +#include "objprop.x" } - -/* - Local Variables: - c-file-style: "gnu" - End: -*/ |