blob: b32dcf8288b971c8a0a049a181cda58c9efb894a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* This contains all symbols and functions to support
* dynamic linking into static libc.
* Copyright (c) 2008 STMicroelectronics Ltd
* Author: Carmelo Amoroso <carmelo.amoroso@st.com>
*
* Based on draft work by Peter S. Mazinger <ps.m@gmx.net>
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*
*/
#ifdef SHARED
#error "This file is not suitable for linking into dynamic libc"
#else
/* Include ldso symbols and functions used into static libc */
#include "../../../ldso/ldso/dl-symbols.c"
#endif
|