File: stdint.h

package info (click to toggle)
pcre2 10.46-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,924 kB
  • sloc: ansic: 104,105; sh: 6,595; makefile: 782
file content (9 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
#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