From: thatsafunnyname Date: Wed, 4 May 2016 14:42:25 +0000 (+0100) Subject: No stdint.h on OpenVMS. X-Git-Tag: v0.6.1^2~22^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dca5cf92ac4f489e4565d28d25965b88d339b8a5;p=thirdparty%2Fzstd.git No stdint.h on OpenVMS. No stdint.h on OpenVMS, it is inttypes.h instead, some projects use HAVE_STDINT_H. --- diff --git a/programs/xxhash.c b/programs/xxhash.c index 352d1e540..2a66e251a 100644 --- a/programs/xxhash.c +++ b/programs/xxhash.c @@ -123,7 +123,7 @@ static void* XXH_memcpy(void* dest, const void* src, size_t size) { return memcp ***************************************/ #ifndef MEM_MODULE # define MEM_MODULE -# if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 */ +# if !defined (__VMS) && ( defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 */ ) # include typedef uint8_t BYTE; typedef uint16_t U16;