diff options
author | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2016-09-10 15:50:53 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2016-09-10 15:50:53 +0530 |
commit | 71756f069a3ec0308f24ab6e6ff60fb13212d411 (patch) | |
tree | fb8446b61db362c7045733e5a6303dbf1a47c0b8 /csu | |
parent | f2227063111582d025778d61263a5662d075714c (diff) | |
download | glibc-71756f069a3ec0308f24ab6e6ff60fb13212d411.tar glibc-71756f069a3ec0308f24ab6e6ff60fb13212d411.tar.gz glibc-71756f069a3ec0308f24ab6e6ff60fb13212d411.tar.bz2 glibc-71756f069a3ec0308f24ab6e6ff60fb13212d411.zip |
Remove __libc_csu_irel declaration
21ad055803de5dd03606588753c46fbf8a5863b2 removed the function, but
missed the declaration in libc-start. Removed and verified that the
generated assembly is unchanged.
* csu/libc-start.c (__libc_csu_irel): Remove declaration.
Diffstat (limited to 'csu')
-rw-r--r-- | csu/libc-start.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/csu/libc-start.c b/csu/libc-start.c index f4aa01a988..99c040ab97 100644 --- a/csu/libc-start.c +++ b/csu/libc-start.c @@ -23,9 +23,6 @@ #include <exit-thread.h> extern void __libc_init_first (int argc, char **argv, char **envp); -#ifndef SHARED -extern void __libc_csu_irel (void); -#endif extern int __libc_multiple_libcs; |