diff options
Diffstat (limited to 'libguile/posix-w32.c')
-rw-r--r-- | libguile/posix-w32.c | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/libguile/posix-w32.c b/libguile/posix-w32.c index 1f00ec168..e4a03eb6a 100644 --- a/libguile/posix-w32.c +++ b/libguile/posix-w32.c @@ -1,27 +1,26 @@ -/* Copyright (C) 2001, 2006, 2008, 2016 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,2006,2008,2016,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" - # define WIN32_LEAN_AND_MEAN #include <windows.h> #include <c-strcase.h> @@ -34,9 +33,10 @@ #include <io.h> #include <fcntl.h> +#include "gc.h" /* for scm_*alloc, scm_strdup */ +#include "threads.h" /* for scm_i_scm_pthread_mutex_lock */ + #include "posix-w32.h" -#include "libguile/gc.h" /* for scm_*alloc, scm_strdup */ -#include "libguile/threads.h" /* for scm_i_scm_pthread_mutex_lock */ /* * Get name and information about current kernel. |