Panda3DS/third_party/duckstation/duckstation_compat.h
wheremyfoodat 5d9ded47da Fix typo
2023-09-30 01:35:26 +03:00

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