]> wimlib.net Git - wimlib/blobdiff - src/lz77.c
Refactor headers
[wimlib] / src / lz77.c
index 36166efe659c3a59fe082fbefb24eaddb33207b6..5afe683b99e4357a504ff34dc310ede69772caae 100644 (file)
  * along with wimlib; if not, see http://www.gnu.org/licenses/.
  */
 
  * along with wimlib; if not, see http://www.gnu.org/licenses/.
  */
 
-#include "compress.h"
+#ifdef HAVE_CONFIG_H
+#  include "config.h"
+#endif
+
+#include "wimlib/compress.h"
+#include "wimlib/util.h"
+
 #include <string.h>
 
 #define LZ_MIN_MATCH 3
 #include <string.h>
 
 #define LZ_MIN_MATCH 3