mirror of
https://github.com/yuzu-emu/AppImageKit-checkrt.git
synced 2025-01-26 01:01:00 +00:00
10 lines
214 B
C
10 lines
214 B
C
extern char *optional;
|
|
extern char *optional_ld_preload;
|
|
extern void checkrt(char *usr_in_appdir);
|
|
extern int debug_flag;
|
|
|
|
#define DEBUG(...) do { \
|
|
if (debug_flag) \
|
|
printf(__VA_ARGS__); \
|
|
} while (0)
|