rename types.h to intdef.h, and make some minor changes

This commit is contained in:
2025-09-09 16:26:57 +02:00
parent cfad7f6fdc
commit fed9333642

View File

@@ -1,9 +1,10 @@
#pragma once #ifndef INTDEF_H
#define INTDEF_H 1
#include <stdint.h> #include <stdint.h>
typedef unsigned int uint; typedef unsigned int uint;
typedef unsigned long ulong; typedef unsigned long ulong;
typedef unsigned long long ullong; typedef unsigned long long ullong;
typedef signed long long llong; typedef long long llong;
typedef int8_t i8; typedef int8_t i8;
typedef int16_t i16; typedef int16_t i16;
@@ -14,3 +15,4 @@ typedef uint8_t u8;
typedef uint16_t u16; typedef uint16_t u16;
typedef uint32_t u32; typedef uint32_t u32;
typedef uint64_t u64; typedef uint64_t u64;
#endif