git: 1bcab3da2bb1 - stable/13 - rtld_lock.h: remove tautological extern's
Konstantin Belousov
kib at FreeBSD.org
Fri Apr 23 11:14:48 UTC 2021
The branch stable/13 has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=1bcab3da2bb1c13ab3d4f128d40eb88def5813df
commit 1bcab3da2bb1c13ab3d4f128d40eb88def5813df
Author: Konstantin Belousov <kib at FreeBSD.org>
AuthorDate: 2021-04-05 04:11:49 +0000
Commit: Konstantin Belousov <kib at FreeBSD.org>
CommitDate: 2021-04-23 11:14:06 +0000
rtld_lock.h: remove tautological extern's
(cherry picked from commit 38e0610df7d5cd5ddd43a477c139ec6ce342c5c2)
---
libexec/rtld-elf/rtld_lock.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libexec/rtld-elf/rtld_lock.h b/libexec/rtld-elf/rtld_lock.h
index 339028c568dc..cc1fd83169f8 100644
--- a/libexec/rtld-elf/rtld_lock.h
+++ b/libexec/rtld-elf/rtld_lock.h
@@ -46,9 +46,9 @@ struct RtldLockInfo
void (*at_fork)(void);
};
-extern void _rtld_thread_init(struct RtldLockInfo *) __exported;
-extern void _rtld_atfork_pre(int *) __exported;
-extern void _rtld_atfork_post(int *) __exported;
+void _rtld_thread_init(struct RtldLockInfo *) __exported;
+void _rtld_atfork_pre(int *) __exported;
+void _rtld_atfork_post(int *) __exported;
#ifdef IN_RTLD
More information about the dev-commits-src-branches
mailing list