From: thatsafunnyname Date: Wed, 4 May 2016 14:39:31 +0000 (+0100) Subject: No stdint.h on OpenVMS. X-Git-Tag: v0.6.1^2~22^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eef5fdb58aba31bdccff68cb2a3b5b4064e50336;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/datagen.c b/programs/datagen.c index b7e33e3c7..bf35c568b 100644 --- a/programs/datagen.c +++ b/programs/datagen.c @@ -34,7 +34,7 @@ /*-************************************ * Basic Types **************************************/ -#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;