DynamicLoader: Remove unused debugging macros

This commit is contained in:
Andreas Kling 2021-01-25 11:33:40 +01:00
parent 75b7880f54
commit 9a0762b203
Notes: sideshowbarker 2024-07-18 22:52:20 +09:00

View File

@ -45,15 +45,6 @@
#include <sys/stat.h>
#include <sys/types.h>
#ifdef DYNAMIC_LOAD_VERBOSE
# define VERBOSE(fmt, ...) dbgprintf(fmt, ##__VA_ARGS__)
#else
# define VERBOSE(fmt, ...) \
do { \
} while (0)
#endif
#define TLS_VERBOSE(fmt, ...) dbgprintf(fmt, ##__VA_ARGS__)
char* __static_environ[] = { nullptr }; // We don't get the environment without some libc workarounds..
static void init_libc()