1 2 3 4 5 6 7 8 9 10
#pragma once #define NULL (0) typedef unsigned int uint32_t; typedef int int32_t; static_assert(sizeof(uint32_t) == 4); void panic(const char*);