X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fcompress.c;h=47026e368d0b256afd1829fdbdc01a49e99be5b9;hb=2fd8ff1904371cf9bfbab7105287cc221379552b;hp=aed609aa7aff560a05e11a2021af3fabdb227749;hpb=6d1fcf62066cf340bcb1527fae4e366af3013ed6;p=wimlib diff --git a/src/compress.c b/src/compress.c index aed609aa..47026e36 100644 --- a/src/compress.c +++ b/src/compress.c @@ -8,35 +8,32 @@ /* * Copyright (C) 2013, 2014 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 +#include + #include "wimlib.h" -#include "wimlib/assert.h" #include "wimlib/error.h" #include "wimlib/compressor_ops.h" #include "wimlib/util.h" -#include -#include - struct wimlib_compressor { const struct compressor_ops *ops; void *private;