1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:58:11 +00:00

DynamicLoader: Remove unused debugging macros

This commit is contained in:
Andreas Kling 2021-01-25 11:33:40 +01:00
parent 75b7880f54
commit 9a0762b203

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()