From: Eric Biggers Date: Sat, 22 Nov 2014 03:03:01 +0000 (-0600) Subject: Use quote includes for all internal headers X-Git-Tag: v1.7.4~50 X-Git-Url: https://wimlib.net/git/?a=commitdiff_plain;h=a300e232a9a64768300a581ca582aa79b55f7071;p=wimlib Use quote includes for all internal headers --- diff --git a/include/wimlib/chunk_compressor.h b/include/wimlib/chunk_compressor.h index 96954637..f21a0c6a 100644 --- a/include/wimlib/chunk_compressor.h +++ b/include/wimlib/chunk_compressor.h @@ -7,7 +7,7 @@ #ifndef _WIMLIB_CHUNK_COMPRESSOR_H #define _WIMLIB_CHUNK_COMPRESSOR_H -#include +#include "wimlib/types.h" /* Interface for chunk compression. Users can submit chunks of data to be * compressed, then retrieve them later in order. This interface can be diff --git a/include/wimlib/compressor_ops.h b/include/wimlib/compressor_ops.h index d155d401..af81546c 100644 --- a/include/wimlib/compressor_ops.h +++ b/include/wimlib/compressor_ops.h @@ -7,7 +7,7 @@ #ifndef _WIMLIB_COMPRESSOR_OPS_H #define _WIMLIB_COMPRESSOR_OPS_H -#include +#include "wimlib/types.h" struct compressor_ops { diff --git a/include/wimlib/textfile.h b/include/wimlib/textfile.h index b4e3885a..608ad08d 100644 --- a/include/wimlib/textfile.h +++ b/include/wimlib/textfile.h @@ -1,7 +1,7 @@ #ifndef _WIMLIB_TEXTFILE_H_ #define _WIMLIB_TEXTFILE_H_ -#include +#include "wimlib/types.h" struct string_set { tchar **strings; diff --git a/include/wimlib/wildcard.h b/include/wimlib/wildcard.h index edd9d84b..4cf21eef 100644 --- a/include/wimlib/wildcard.h +++ b/include/wimlib/wildcard.h @@ -1,7 +1,7 @@ #ifndef _WIMLIB_WILDCARD_H #define _WIMLIB_WILDCARD_H -#include +#include "wimlib/types.h" struct wim_dentry; diff --git a/src/avl_tree.c b/src/avl_tree.c index 86eb3882..e9841f56 100644 --- a/src/avl_tree.c +++ b/src/avl_tree.c @@ -11,7 +11,7 @@ * You can do whatever you want with this file. */ -#include +#include "wimlib/avl_tree.h" /* Starts an in-order traversal of the tree: returns the least-valued node, or * NULL if the tree is empty. */