diff options
author | W. Felix Handte <w@felixhandte.com> | 2018-04-21 00:55:38 (GMT) |
---|---|---|
committer | W. Felix Handte <w@felixhandte.com> | 2018-04-24 20:22:28 (GMT) |
commit | 2dfc7cbe826342905faa479175f6f050e8445aff (patch) | |
tree | d72bcb1a8ed2b4f2652d975e5ec17946f6ba5ddc /tests | |
parent | 2be3905fa4974fd20fea4d9eda5a0030c9d19e93 (diff) | |
download | lz4-2dfc7cbe826342905faa479175f6f050e8445aff.zip lz4-2dfc7cbe826342905faa479175f6f050e8445aff.tar.gz lz4-2dfc7cbe826342905faa479175f6f050e8445aff.tar.bz2 |
Change Over Includes in the Project
Diffstat (limited to 'tests')
-rw-r--r-- | tests/frametest.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/frametest.c b/tests/frametest.c index 74d9c88..01f1300 100644 --- a/tests/frametest.c +++ b/tests/frametest.c @@ -41,7 +41,8 @@ #include <string.h> /* strcmp */ #include <time.h> /* clock_t, clock(), CLOCKS_PER_SEC */ #include <assert.h> -#include "lz4frame_static.h" +#define LZ4F_STATIC_LINKING_ONLY +#include "lz4frame.h" #include "lz4.h" /* LZ4_VERSION_STRING */ #define XXH_STATIC_LINKING_ONLY #include "xxhash.h" /* XXH64 */ |