mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-01-04 15:29:19 +03:00
9 lines
191 B
C++
9 lines
191 B
C++
|
#include "includes.hpp"
|
||
|
|
||
|
#ifndef NDEBUG
|
||
|
#define ISDEBUG true
|
||
|
#else
|
||
|
#define ISDEBUG false
|
||
|
#endif
|
||
|
|
||
|
#define RIP(format, ... ) { fprintf(stderr, format "\n", ##__VA_ARGS__); exit(EXIT_FAILURE); }
|