mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2026-01-02 05:25:19 -08:00
17 lines
385 B
C
17 lines
385 B
C
#ifndef CLASSICOS_KLIBC_STDINT_H
|
|
#define CLASSICOS_KLIBC_STDINT_H
|
|
|
|
typedef signed char int8_t;
|
|
typedef short int int16_t;
|
|
typedef int int32_t;
|
|
typedef long long int int64_t;
|
|
|
|
typedef unsigned char uint8_t;
|
|
typedef unsigned short int uint16_t;
|
|
typedef unsigned int uint32_t;
|
|
typedef unsigned long long int uint64_t;
|
|
|
|
typedef unsigned int uintptr_t;
|
|
|
|
#endif // CLASSICOS_KLIBC_STDINT_H
|