// These shared values apply to the whole program. #ifndef SHARED_H #define SHARED_H #define SZ 9 #define N_CELLS (SZ * SZ) // Unceremoniously crash the process. RIP! void crash(const char* msg); #endif