aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2021-04-05 04:11:49 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2021-04-09 20:46:23 +0000
commit38e0610df7d5cd5ddd43a477c139ec6ce342c5c2 (patch)
treeab7b24626012eb86e3e07e06a0592730d9220b70 /libexec
parent2fd1ffefaa4d2cd99a19f866a949cb2cd58ef998 (diff)
downloadsrc-38e0610df7d5cd5ddd43a477c139ec6ce342c5c2.tar.gz
src-38e0610df7d5cd5ddd43a477c139ec6ce342c5c2.zip
rtld_lock.h: remove tautological extern's
Sponsored by: The FreeBSD Foundation MFC after: 1 week Differential revision: https://reviews.freebsd.org/D29623
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rtld-elf/rtld_lock.h6
1 files 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