summaryrefslogtreecommitdiffstats
path: root/lib/lz4frame.c
diff options
context:
space:
mode:
authorAlexander Mohr <alexander.m.mohr@mercedes-benz.com>2022-06-10 19:45:21 (GMT)
committerAlexander Mohr <git@mohr.io>2022-06-11 20:47:44 (GMT)
commit1738b50443d1446c9c80ebd7c9272427f2644809 (patch)
tree36e6fa69a8afc1b49009c63e8f8a74703d195794 /lib/lz4frame.c
parent5c7382798eb9b5af9eaa6c66f018c8efcb62f8d5 (diff)
downloadlz4-1738b50443d1446c9c80ebd7c9272427f2644809.zip
lz4-1738b50443d1446c9c80ebd7c9272427f2644809.tar.gz
lz4-1738b50443d1446c9c80ebd7c9272427f2644809.tar.bz2
fuzz-test: add fuzz test for uncompressed api
add a fuzzing test for uncompressed frame api Signed-off-by: Alexander Mohr <alexander.m.mohr@mercedes-benz.com>
Diffstat (limited to 'lib/lz4frame.c')
-rw-r--r--lib/lz4frame.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/lz4frame.c b/lib/lz4frame.c
index 0c78a1f..c7e0595 100644
--- a/lib/lz4frame.c
+++ b/lib/lz4frame.c
@@ -129,8 +129,7 @@ static int g_debuglog_enable = 1;
**************************************/
#if !defined (__VMS) && (defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) )
# include <stdint.h>
-#include <stdio.h>
-typedef uint8_t BYTE;
+ typedef uint8_t BYTE;
typedef uint16_t U16;
typedef uint32_t U32;
typedef int32_t S32;