OSDN Git Service

ldso: remove duplicate function declarations
[uclinux-h8/uClibc.git] / ldso / ldso / dl-symbols.c
1 /*
2  * This contains all symbols shared between
3  * dynamic linker ld.so and into static libc
4  *
5  * Copyright (c) 2008  STMicroelectronics Ltd
6  * Author: Carmelo Amoroso <carmelo.amoroso@st.com>
7  *
8  *
9  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
10  *
11  */
12
13 /*
14  * This is the start of the linked list that describes all of the files present
15  * in the system with pointers to all of the symbol, string, and hash tables,
16  * as well as all of the other good stuff in the binary.
17  */
18 #include <ldso.h>
19
20 struct elf_resolve *_dl_loaded_modules = NULL;
21