mirror of
https://github.com/yuzu-emu/AppImageKit-checkrt.git
synced 2025-01-12 22:05:33 +00:00
12 lines
186 B
C
12 lines
186 B
C
|
#ifndef DEBUG_H
|
||
|
#define DEBUG_H
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#define DEBUG(...) do { \
|
||
|
if (getenv("APPIMAGE_CHECKRT_DEBUG")) \
|
||
|
printf(__VA_ARGS__); \
|
||
|
} while (0)
|
||
|
|
||
|
#endif // DEBUG_H
|