1/*
2 * Copyright 2012-2018, Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Ithamar R. Adema <ithamar@upgrade-android.com>
7 */
8
9#include <string.h>
10#include <stdio.h>
11#include <stdlib.h>
12
13#include "runtime_loader_private.h"
14
15#include <runtime_loader.h>
16
17//#define TRACE_RLD
18#ifdef TRACE_RLD
19#	define TRACE(x) dprintf x
20#else
21#	define TRACE(x) ;
22#endif
23
24status_t
25arch_relocate_image(image_t *rootImage, image_t *image,
26	SymbolLookupCache* cache)
27{
28	debugger("arch_relocate_image: Not Yet Implemented!");
29	return B_OK;
30}
31