AppImageKit-checkrt/debug.h
2018-01-12 23:14:39 +01:00

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