From: thatsafunnyname Date: Wed, 4 May 2016 14:43:42 +0000 (+0100) Subject: No stdint.h on OpenVMS. X-Git-Tag: v0.6.1^2~22^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F180%2Fhead;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/lib/common/mem.h b/lib/common/mem.h index ceafd57b4..dbefcdb21 100644 --- a/lib/common/mem.h +++ b/lib/common/mem.h @@ -63,7 +63,7 @@ extern "C" { /*-************************************************************** * Basic Types *****************************************************************/ -#if defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) +#if !defined (__VMS) && ( defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) ) # include typedef uint8_t BYTE; typedef uint16_t U16;