X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Ffile_io.c;h=317a00d03b61df66d083c93162dcf5ed303256b6;hb=0e650cac77ac5a9e418300e50d7ddd7696a18531;hp=752c1121e8ee5f388452cc8bb9cfc8c927ef9c65;hpb=e4639c339aa29714173c95b81fa4e1908ff953e6;p=wimlib diff --git a/src/file_io.c b/src/file_io.c index 752c1121..317a00d0 100644 --- a/src/file_io.c +++ b/src/file_io.c @@ -5,36 +5,31 @@ /* * Copyright (C) 2013 Eric Biggers * - * This file is part of wimlib, a library for working with WIM files. + * This file 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. * - * wimlib is free software; you can redistribute it and/or modify it under the - * terms of the GNU General Public License as published by the Free - * Software Foundation; either version 3 of the License, or (at your option) - * any later version. - * - * wimlib 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 General Public License for more + * This file 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 General Public License - * along with wimlib; if not, see http://www.gnu.org/licenses/. + * You should have received a copy of the GNU Lesser General Public License + * along with this file; if not, see http://www.gnu.org/licenses/. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif -#include "wimlib/error.h" -#include "wimlib/file_io.h" -#include "wimlib/util.h" -#ifdef __WIN32__ -# include "wimlib/win32.h" /* For pread(), pwrite() replacements */ -#endif - #include #include +#include "wimlib/error.h" +#include "wimlib/file_io.h" +#include "wimlib/util.h" +#include "wimlib/win32.h" /* For pread(), pwrite() replacements */ /* Wrapper around read() that checks for errors keeps retrying until all * requested bytes have been read or until end-of file has occurred.