mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-11 10:41:04 +00:00
19 lines
314 B
C
19 lines
314 B
C
|
|
/*
|
||
|
|
* 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);
|
||
|
|
|
||
|
|
}
|