summaryrefslogtreecommitdiffstats
path: root/programs/bench.c
diff options
context:
space:
mode:
authorPrzemyslaw Skibinski <inikep@gmail.com>2016-12-20 17:05:43 (GMT)
committerPrzemyslaw Skibinski <inikep@gmail.com>2016-12-20 17:05:43 (GMT)
commit2cfef13952c4c7c3d79a9a4748653526d6c85eb0 (patch)
treeb7744b5a3ef7306be0195bd38b4a384630d8052d /programs/bench.c
parentbb69cdf2583a56c6c703f5b91aae0632912f5a8a (diff)
downloadlz4-2cfef13952c4c7c3d79a9a4748653526d6c85eb0.zip
lz4-2cfef13952c4c7c3d79a9a4748653526d6c85eb0.tar.gz
lz4-2cfef13952c4c7c3d79a9a4748653526d6c85eb0.tar.bz2
executables use platform.h
Diffstat (limited to 'programs/bench.c')
-rw-r--r--programs/bench.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/programs/bench.c b/programs/bench.c
index 434da8b..f077b42 100644
--- a/programs/bench.c
+++ b/programs/bench.c
@@ -27,10 +27,11 @@
/* *************************************
* Includes
***************************************/
-#include "util.h" /* Compiler options, UTIL_GetFileSize, UTIL_sleep */
+#include "platform.h" /* Compiler options */
+#include "util.h" /* UTIL_GetFileSize, UTIL_sleep */
#include <stdlib.h> /* malloc, free */
#include <string.h> /* memset */
-#include <stdio.h> /* fprintf, fopen, ftello64 */
+#include <stdio.h> /* fprintf, fopen, ftello */
#include <time.h> /* clock_t, clock, CLOCKS_PER_SEC */
#include "datagen.h" /* RDG_genBuffer */