shithub: scc

ref: 4be5b671982310f44410c71e58e88f2f2d8d2ef5
dir: /libc/include/z80/stdint.h/

View raw version
/* See LICENSE file for copyright and license details. */
#ifndef _STDINT_H_
#define _STDINT_H_

typedef int8_t signed char;
typedef int16_t int;
typedef int32_t long;
typedef int64_t long long;

typedef uint8_t unsigned char;
typedef uint16_t unsigned;
typedef uint32_t unsigned long;
typedef uint64_t unsigned long long;

typedef int8_least_t signed char;
typedef int16_least_t int;
typedef int32_least_t long;
typedef int64_least_t long long;

typedef uint8_least_t unsigned char;
typedef uint16_least_t unsigned;
typedef uint32_least_t unsigned long;
typedef uint64_least_t unsigned long long;

typedef int8_fast_t signed char;
typedef int16_fast_t int;
typedef int32_fast_t long;
typedef int64_fast_t long long;

typedef int8_fast_t unsigned char;
typedef int16_fast_t unsigned;
typedef int32_fast_t unsigned long;
typedef int64_fast_t unsigned long long;

typedef long intptr_t;
typedef unsigned uintptr_t;

typedef long intmax_t;
typedef unsigned long long uintmax_t;

#endif