diff options
Diffstat (limited to 'libguile/boolean.c')
-rw-r--r-- | libguile/boolean.c | 56 |
1 files changed, 25 insertions, 31 deletions
diff --git a/libguile/boolean.c b/libguile/boolean.c index 635c14905..e8370331f 100644 --- a/libguile/boolean.c +++ b/libguile/boolean.c @@ -1,35 +1,35 @@ -/* Copyright (C) 1995, 1996, 2000, 2001, 2006, 2008-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 1995-1996,2000-2001,2006,2008-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> #endif -#include "libguile/_scm.h" +#include "error.h" +#include "gsubr.h" +#include "verify.h" -#include "libguile/validate.h" -#include "libguile/boolean.h" -#include "libguile/tags.h" +#include "boolean.h" -#include "verify.h" @@ -39,7 +39,7 @@ * terms of the SCM_MATCHES_BITS_IN_COMMON macro. * * See the comments preceeding the definitions of SCM_BOOL_F and - * SCM_MATCHES_BITS_IN_COMMON in tags.h for more information. + * SCM_MATCHES_BITS_IN_COMMON in scm.h for more information. */ verify (SCM_BITS_DIFFER_IN_EXACTLY_ONE_BIT_POSITION \ (SCM_BOOL_F_BITS, SCM_BOOL_T_BITS)); @@ -115,12 +115,6 @@ scm_is_bool (SCM obj) void scm_init_boolean () { -#include "libguile/boolean.x" +#include "boolean.x" } - -/* - Local Variables: - c-file-style: "gnu" - End: -*/ |