From 9a0762b203c8d5e912c2ff0d4571f1c9771feb6c Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 25 Jan 2021 11:33:40 +0100 Subject: [PATCH] DynamicLoader: Remove unused debugging macros --- Userland/DynamicLoader/main.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Userland/DynamicLoader/main.cpp b/Userland/DynamicLoader/main.cpp index 452b333a38..b0eaadb4bb 100644 --- a/Userland/DynamicLoader/main.cpp +++ b/Userland/DynamicLoader/main.cpp @@ -45,15 +45,6 @@ #include #include -#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()