diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2014-12-13 14:05:46 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2014-12-13 14:05:46 (GMT) |
commit | daa320f3f7bd9cc121462ef7a201fad87f540bd6 (patch) | |
tree | 10a05dcdcfb7255c21e6663dbae8f5fa8351b51c /programs/frametest.c | |
parent | 8f844fe70068d2a632e7f0e24ecfa05a1d3e1302 (diff) | |
download | lz4-daa320f3f7bd9cc121462ef7a201fad87f540bd6.zip lz4-daa320f3f7bd9cc121462ef7a201fad87f540bd6.tar.gz lz4-daa320f3f7bd9cc121462ef7a201fad87f540bd6.tar.bz2 |
New : lz4frame integrated into liblz4 (v1.5.0)
Diffstat (limited to 'programs/frametest.c')
-rw-r--r-- | programs/frametest.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/programs/frametest.c b/programs/frametest.c index 2a0c603..71490a6 100644 --- a/programs/frametest.c +++ b/programs/frametest.c @@ -38,13 +38,13 @@ /************************************** - Includes + Includes **************************************/ -#include <stdlib.h> +#include <stdlib.h> // free #include <stdio.h> // fgets, sscanf #include <sys/timeb.h> // timeb #include <string.h> // strcmp -#include "lz4frame.h" +#include "lz4frame_static.h" #include "xxhash.h" // XXH64 |