summaryrefslogtreecommitdiff
path: root/ldso/ldso/dl-symbols.c
blob: e5c00211a3b99d115921bbe6923ef04c6b8340c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * This contains all symbols shared between
 * dynamic linker ld.so and into static libc
 *
 * Copyright (c) 2008  STMicroelectronics Ltd
 * Author: Carmelo Amoroso <carmelo.amoroso@st.com>
 *
 *
 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 *
 */

/*
 * This is the start of the linked list that describes all of the files present
 * in the system with pointers to all of the symbol, string, and hash tables,
 * as well as all of the other good stuff in the binary.
 */
#include <ldso.h>

struct elf_resolve *_dl_loaded_modules = NULL;