restore openVMS support (detected by @thatsafunnyname)

This commit is contained in:
Yann Collet
2016-05-13 12:43:36 +02:00
parent 929f80288d
commit d9b3cca4d3
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -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 <stdint.h>
typedef uint8_t BYTE;
typedef uint16_t U16;