diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-14 13:11:16 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-14 13:11:16 (GMT) |
commit | 20d74e7d97b876232134f2e88e4f3b39f792bfe2 (patch) | |
tree | 8830e86525a52830d31f481bb4d4b4dec2735ab1 /include/compression | |
parent | df283e79475806a920e12bd0596210ba6ca54f74 (diff) |
Fix include paths.
Diffstat (limited to 'include/compression')
-rw-r--r-- | include/compression/fixpoint.h | 2 | ||||
-rw-r--r-- | include/compression/my64bit.h | 2 | ||||
-rw-r--r-- | include/compression/warnmalloc.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/compression/fixpoint.h b/include/compression/fixpoint.h index 2022e43..b1e7130 100644 --- a/include/compression/fixpoint.h +++ b/include/compression/fixpoint.h @@ -13,7 +13,7 @@ #ifndef FIXPOINT_H #define FIXPOINT_H -#include "my64bit.h" +#include "compression/my64bit.h" /* There are at least 32 bits available in a long. */ typedef unsigned long fix_t; diff --git a/include/compression/my64bit.h b/include/compression/my64bit.h index 011acfb..f88c797 100644 --- a/include/compression/my64bit.h +++ b/include/compression/my64bit.h @@ -20,7 +20,7 @@ typedef uint64_t my_uint64_t; #define HAVE64BIT #else /* USE_STD_INTTYPES */ /* The USE_WINDOWS symbol should be automatically defined in tng_compress.h */ -#include "tng_compress.h" +#include "compression/tng_compress.h" #ifdef USE_WINDOWS typedef __int64 my_int64_t; typedef unsigned __int64 my_uint64_t; diff --git a/include/compression/warnmalloc.h b/include/compression/warnmalloc.h index 4db41b2..945afbe 100644 --- a/include/compression/warnmalloc.h +++ b/include/compression/warnmalloc.h @@ -14,7 +14,7 @@ #ifndef WARNMALLOC_H #define WARNMALLOC_H -#include "tng_compress.h" +#include "compression/tng_compress.h" void DECLSPECDLLEXPORT *Ptngc_warnmalloc_x(size_t size, char *file, int line); |