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