mirror of
https://github.com/PCRE2Project/pcre2.git
synced 2025-10-17 23:57:23 +08:00
10 lines
211 B
C
10 lines
211 B
C
#ifndef MY_VMS_STDINT
|
|
#define MY_VMS_STDINT
|
|
#include <inttypes.h>
|
|
#include <limits.h>
|
|
#include <stdbool.h>
|
|
#define SIZE_MAX UINT_MAX
|
|
#define UINT32_MAX 4294967295u
|
|
#define UINT16_MAX (65535)
|
|
#endif
|