diff options
author | Przemyslaw Skibinski <inikep@gmail.com> | 2016-11-04 14:52:34 (GMT) |
---|---|---|
committer | Przemyslaw Skibinski <inikep@gmail.com> | 2016-11-04 14:52:34 (GMT) |
commit | 8ddaddc2d64451511d88634e2061766655289774 (patch) | |
tree | 0b40bd9d6931778c6e3ce3e89a1aa92b7a936b4d /programs | |
parent | e8a6067e8a2d033049e5eafa0617c29b0e51146f (diff) | |
download | lz4-8ddaddc2d64451511d88634e2061766655289774.zip lz4-8ddaddc2d64451511d88634e2061766655289774.tar.gz lz4-8ddaddc2d64451511d88634e2061766655289774.tar.bz2 |
updated #include in util.h
Diffstat (limited to 'programs')
-rw-r--r-- | programs/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/programs/util.h b/programs/util.h index 6a085da..d76ce6a 100644 --- a/programs/util.h +++ b/programs/util.h @@ -59,6 +59,8 @@ extern "C" { ******************************************/ #include <stdlib.h> /* features.h with _POSIX_C_SOURCE, malloc */ #include <stdio.h> /* fprintf */ +#include <string.h> /* strerr, strlen, memcpy */ +#include <stddef.h> /* ptrdiff_t */ #include <sys/types.h> /* stat, utime */ #include <sys/stat.h> /* stat */ #if defined(_MSC_VER) |