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