2017-12-06 13:37:47 +00:00
|
|
|
extern char *optional;
|
|
|
|
extern char *optional_ld_preload;
|
2017-12-21 15:40:15 +00:00
|
|
|
extern void checkrt(char *usr_in_appdir);
|
2018-01-06 09:27:32 +00:00
|
|
|
extern int debug_flag;
|
|
|
|
|
|
|
|
#define DEBUG(...) do { \
|
|
|
|
if (debug_flag) \
|
|
|
|
printf(__VA_ARGS__); \
|
|
|
|
} while (0)
|