summaryrefslogtreecommitdiff
path: root/ELFLoader/ExecSpace.h
diff options
context:
space:
mode:
Diffstat (limited to 'ELFLoader/ExecSpace.h')
-rw-r--r--ELFLoader/ExecSpace.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/ELFLoader/ExecSpace.h b/ELFLoader/ExecSpace.h
index 1e22468af4..432bf0a82e 100644
--- a/ELFLoader/ExecSpace.h
+++ b/ELFLoader/ExecSpace.h
@@ -1,5 +1,6 @@
#pragma once
+#include <AK/Function.h>
#include <AK/HashMap.h>
#include <AK/MappedFile.h>
#include <AK/OwnPtr.h>
@@ -37,6 +38,8 @@ public:
ExecSpace();
~ExecSpace();
+ Function<void*(const String&, size_t)> hookableAlloc;
+
#ifdef SERENITY
bool loadELF(ByteBuffer&&);
#else