2018-01-06 18:09:53 +00:00
|
|
|
#ifndef DEBUG_H
|
|
|
|
#define DEBUG_H
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#define DEBUG(...) do { \
|
|
|
|
if (getenv("APPIMAGE_CHECKRT_DEBUG")) \
|
2018-01-06 22:38:46 +00:00
|
|
|
printf("APPIMAGE_CHECKRT>> " __VA_ARGS__); \
|
2018-01-06 18:09:53 +00:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#endif // DEBUG_H
|