headers/bsd: Add sys/queue.h.
[haiku.git] / src / system / runtime_loader / arch / arm / arch_relocate.cpp
blobd3dea465ae95c19845a5838ccbdc17e5f9952972
1 /*
2 * Copyright 2012, Haiku, Inc.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Ithamar R. Adema <ithamar@upgrade-android.com>
7 */
9 #include <string.h>
10 #include <stdio.h>
11 #include <stdlib.h>
13 #include "runtime_loader_private.h"
15 #include <runtime_loader.h>
17 //#define TRACE_RLD
18 #ifdef TRACE_RLD
19 # define TRACE(x) dprintf x
20 #else
21 # define TRACE(x) ;
22 #endif
24 status_t
25 arch_relocate_image(image_t *rootImage, image_t *image,
26 SymbolLookupCache* cache)
28 debugger("arch_relocate_image: Not Yet Implemented!");
29 return B_OK;