Remove reliance on stdint from core.

This commit is contained in:
2026-03-14 23:18:19 -07:00
parent ace09a223f
commit 5fd2409169
+14 -15
View File
@@ -11,7 +11,6 @@
#include <stdarg.h> #include <stdarg.h>
#include <math.h> #include <math.h>
#include <string.h> #include <string.h>
#include <stdint.h>
//////////////////////////////// ////////////////////////////////
//~ rjf: Codebase Keywords //~ rjf: Codebase Keywords
@@ -136,20 +135,20 @@
//////////////////////////////// ////////////////////////////////
//~ rjf: Base Types //~ rjf: Base Types
typedef uint8_t U8; typedef unsigned char U8;
typedef uint16_t U16; typedef unsigned short U16;
typedef uint32_t U32; typedef unsigned int U32;
typedef uint64_t U64; typedef unsigned long long U64;
typedef int8_t S8; typedef signed char S8;
typedef int16_t S16; typedef short S16;
typedef int32_t S32; typedef int S32;
typedef int64_t S64; typedef long long S64;
typedef S8 B8; typedef S8 B8;
typedef S16 B16; typedef S16 B16;
typedef S32 B32; typedef S32 B32;
typedef S64 B64; typedef S64 B64;
typedef float F32; typedef float F32;
typedef double F64; typedef double F64;
typedef void VoidProc(void); typedef void VoidProc(void);
typedef union U128 U128; typedef union U128 U128;
union U128 union U128