diff options
Diffstat (limited to 'libguile/strorder.c')
-rw-r--r-- | libguile/strorder.c | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/libguile/strorder.c b/libguile/strorder.c index a51ce17ae..be6600f70 100644 --- a/libguile/strorder.c +++ b/libguile/strorder.c @@ -1,36 +1,42 @@ -/* Copyright (C) 1995, 1996, 1999, 2000, 2004, 2006, 2008, 2009, 2010 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,1999-2000,2004,2006,2008-2010,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/chars.h" -#include "libguile/strings.h" -#include "libguile/symbols.h" +#include "boolean.h" +#include "chars.h" +#include "gsubr.h" +#include "pairs.h" +#include "srfi-13.h" +#include "strings.h" +#include "symbols.h" + +#include "strorder.h" + -#include "libguile/validate.h" -#include "libguile/strorder.h" -#include "libguile/srfi-13.h" + SCM_C_INLINE_KEYWORD static SCM srfi13_cmp (SCM s1, SCM s2, SCM (*cmp) (SCM, SCM, SCM, SCM, SCM, SCM)) { @@ -339,12 +345,6 @@ SCM scm_string_ci_geq_p (SCM s1, SCM s2) void scm_init_strorder () { -#include "libguile/strorder.x" +#include "strorder.x" } - -/* - Local Variables: - c-file-style: "gnu" - End: -*/ |