No stdint.h on OpenVMS.

No stdint.h on OpenVMS, it is inttypes.h instead, some projects use HAVE_STDINT_H.
This commit is contained in:
thatsafunnyname 2016-05-04 15:42:25 +01:00
parent eef5fdb58a
commit dca5cf92ac

View File

@ -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 <stdint.h>
typedef uint8_t BYTE;
typedef uint16_t U16;