Tiny steps towards implementing C runtime

This commit is contained in:
KeybadeBlox 2026-02-14 12:34:28 -05:00
parent ccd2cd37a5
commit c38d9b5628
6 changed files with 65 additions and 14 deletions

View file

@ -32,10 +32,6 @@ typedef int BOOL;
// 64-bit integer compatibility type
union LARGE_INTEGER {
struct {
DWORD LowPart;
LONG HighPart;
};
struct {
DWORD LowPart;
LONG HighPart;