github的一些开源项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
211 B

  1. #ifndef MY_VMS_STDINT
  2. #define MY_VMS_STDINT
  3. #include <inttypes.h>
  4. #include <limits.h>
  5. #include <stdbool.h>
  6. #define SIZE_MAX UINT_MAX
  7. #define UINT32_MAX 4294967295u
  8. #define UINT16_MAX (65535)
  9. #endif