summaryrefslogtreecommitdiff
path: root/Userland/DynamicLoader
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-01-25 11:33:40 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-25 18:57:06 +0100
commit9a0762b203c8d5e912c2ff0d4571f1c9771feb6c (patch)
tree0516cd19b83c6340ffb022bb66f66649082a262a /Userland/DynamicLoader
parent75b7880f54c68a34437da4fcc1115920801b1e55 (diff)
downloadserenity-9a0762b203c8d5e912c2ff0d4571f1c9771feb6c.zip
DynamicLoader: Remove unused debugging macros
Diffstat (limited to 'Userland/DynamicLoader')
-rw-r--r--Userland/DynamicLoader/main.cpp9
1 files changed, 0 insertions, 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 <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()