summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibELF/Relocation.h
blob: d9fc4da0841f74e29d53aa73a2dc3b965f2474fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (c) 2021, Gunnar Beutner <gbeutner@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Concepts.h>
#include <AK/String.h>
#include <AK/Vector.h>
#include <Kernel/VirtualAddress.h>

namespace ELF {

bool perform_relative_relocations(FlatPtr base_address);

}