diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2014-01-14 08:06:39 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2014-01-14 08:06:39 (GMT) |
commit | 951d5a3f6052de96220c190280d6e20fb22ada46 (patch) | |
tree | d7a6c42228dd141f8bedd883411c60e86402fc34 /include | |
parent | db441e04e71e2a0177ee382216cf4677aa5878f7 (diff) |
Use relative paths for includes.
Diffstat (limited to 'include')
-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 f448dbf..6be7482 100644 --- a/include/compression/fixpoint.h +++ b/include/compression/fixpoint.h @@ -11,7 +11,7 @@ #ifndef FIXPOINT_H #define FIXPOINT_H -#include "compression/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 2959a8d..c17a4a9 100644 --- a/include/compression/my64bit.h +++ b/include/compression/my64bit.h @@ -18,7 +18,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 "compression/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 46e7d52..4444271 100644 --- a/include/compression/warnmalloc.h +++ b/include/compression/warnmalloc.h @@ -12,7 +12,7 @@ #ifndef WARNMALLOC_H #define WARNMALLOC_H -#include "compression/tng_compress.h" +#include "../compression/tng_compress.h" void DECLSPECDLLEXPORT *Ptngc_warnmalloc_x(size_t size, char *file, int line); |