summaryrefslogtreecommitdiffstats
path: root/libc/misc/elf/dl-core.c
diff options
context:
space:
mode:
authorCarmelo Amoroso <carmelo.amoroso@st.com>2008-07-09 16:51:42 +0000
committerCarmelo Amoroso <carmelo.amoroso@st.com>2008-07-09 16:51:42 +0000
commit02aea2e1b55c5afaa5fa32061db6a415dc27ffb6 (patch)
tree10bb9344f2778894e48ec72a06be0b80892e9a17 /libc/misc/elf/dl-core.c
parent62a21af8006ab04282fdc354c5b4dc765f56d058 (diff)
downloaduClibc-alpine-02aea2e1b55c5afaa5fa32061db6a415dc27ffb6.tar.bz2
uClibc-alpine-02aea2e1b55c5afaa5fa32061db6a415dc27ffb6.tar.xz
BIG BIG commit: forgotten files
Diffstat (limited to 'libc/misc/elf/dl-core.c')
-rw-r--r--libc/misc/elf/dl-core.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/libc/misc/elf/dl-core.c b/libc/misc/elf/dl-core.c
new file mode 100644
index 000000000..b32dcf828
--- /dev/null
+++ b/libc/misc/elf/dl-core.c
@@ -0,0 +1,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
+