mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
16 lines
No EOL
318 B
C
16 lines
No EOL
318 B
C
#ifndef DUCKSTATION_COMPAT_H
|
|
#define DUCKSTATION_COMPAT_H
|
|
|
|
#include <assert.h>
|
|
|
|
#include "compiler_builtins.hpp"
|
|
#include "helpers.hpp"
|
|
|
|
#define AssertMsg(cond, msg) assert(cond&& msg)
|
|
#define Assert(cond) assert(cond)
|
|
|
|
#define Panic(msg) assert(false && msg)
|
|
|
|
#define UnreachableCode() __builtin_unreachable()
|
|
|
|
#endif |