Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/taviso/loadlibrary.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTavis Ormandy <taviso@gmail.com>2019-08-21 02:08:41 +0300
committerTavis Ormandy <taviso@gmail.com>2019-08-21 02:08:41 +0300
commit165a9657cbee264bd3ae0de333054211d5639b84 (patch)
tree0ffa0d7cc575dc93efa23d7c83fbec345a721041
parentc4e905f7296aefe08b581c3f8becc8e55fb64ca0 (diff)
no longer need codealloc in pe_linker
-rw-r--r--peloader/pe_linker.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/peloader/pe_linker.c b/peloader/pe_linker.c
index 707b53c..77567b6 100644
--- a/peloader/pe_linker.c
+++ b/peloader/pe_linker.c
@@ -30,12 +30,13 @@
#include <errno.h>
#include <string.h>
#include <search.h>
+#include <stdlib.h>
+#include <assert.h>
#include <err.h>
#include "winnt_types.h"
#include "pe_linker.h"
#include "ntoskernel.h"
-#include "codealloc.h"
#include "util.h"
#include "log.h"