ref: b163cce9603d1d385698e8b09d66797a9086ba28
dir: /libc/include/bits/i386-sysv/arch/stdint.h/
/* See LICENSE file for copyright and license details. */ typedef signed char int8_t; typedef short int16_t; typedef int int32_t; typedef long long int64_t; typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned uint32_t; typedef unsigned long long uint64_t; typedef signed char int8_least_t; typedef short int16_least_t; typedef int int32_least_t; typedef long long int64_least_t; typedef unsigned char uint8_least_t; typedef unsigned short uint16_least_t; typedef unsigned uint32_least_t; typedef unsigned long long uint64_least_t; typedef int int8_fast_t; typedef int int16_fast_t; typedef int int32_fast_t; typedef long long int64_fast_t; typedef unsigned uint8_fast_t; typedef unsigned uint16_fast_t; typedef unsigned uint32_fast_t; typedef unsigned long long uint64_fast_t; typedef intptr_t long; typedef long long uintptr_t unsigned; typedef intmax_t long; typedef long long uintmax_t unsigned;