diff options
author | Przemyslaw Skibinski <inikep@gmail.com> | 2016-12-21 15:10:09 (GMT) |
---|---|---|
committer | Przemyslaw Skibinski <inikep@gmail.com> | 2016-12-21 15:10:09 (GMT) |
commit | 973bc79740f571c2b6700cab16a319df9aed2a05 (patch) | |
tree | e3ece1e99990ad10a491e7077968072346cf0f3d /tests/frametest.c | |
parent | 4f61505cc40cb8b2c6c371600a427fd685c656a2 (diff) | |
download | lz4-973bc79740f571c2b6700cab16a319df9aed2a05.zip lz4-973bc79740f571c2b6700cab16a319df9aed2a05.tar.gz lz4-973bc79740f571c2b6700cab16a319df9aed2a05.tar.bz2 |
util.h and platform.h based on zstd
Diffstat (limited to 'tests/frametest.c')
-rw-r--r-- | tests/frametest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/frametest.c b/tests/frametest.c index 8b7caba..869be76 100644 --- a/tests/frametest.c +++ b/tests/frametest.c @@ -27,6 +27,7 @@ * Compiler specific **************************************/ #ifdef _MSC_VER /* Visual Studio */ +# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */ # pragma warning(disable : 4146) /* disable: C4146: minus unsigned expression */ #endif @@ -34,7 +35,6 @@ /*-************************************ * Includes **************************************/ -#include "platform.h" /* Compiler options */ #include "util.h" /* U32 */ #include <stdlib.h> /* malloc, free */ #include <stdio.h> /* fprintf */ |