AppImageKit-checkrt/debug.h
2018-01-06 19:10:24 +01:00

11 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