temporalz/src/stubs/c_headers/stdint.h
2026-02-11 16:22:57 +06:00

25 lines
625 B
C

#ifndef TEMPORALZ_STDINT_H
#define TEMPORALZ_STDINT_H
typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef signed short int16_t;
typedef unsigned short uint16_t;
typedef signed int int32_t;
typedef unsigned int uint32_t;
typedef signed long long int64_t;
typedef unsigned long long uint64_t;
typedef int8_t int_least8_t;
typedef uint8_t uint_least8_t;
typedef int16_t int_least16_t;
typedef uint16_t uint_least16_t;
typedef int32_t int_least32_t;
typedef uint32_t uint_least32_t;
typedef int64_t int_least64_t;
typedef uint64_t uint_least64_t;
typedef long intptr_t;
typedef unsigned long uintptr_t;
#endif