• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // <stdint.h>-like types get special treatment even when blocklisted.
2 typedef signed char      int8_t;
3 typedef unsigned char    uint8_t;
4 typedef signed short     int16_t;
5 typedef unsigned short   uint16_t;
6 typedef signed int       int32_t;
7 typedef unsigned int     uint32_t;
8