rtld_lock.h: remove tautological extern's

Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
Differential revision:	https://reviews.freebsd.org/D29623
This commit is contained in:
Konstantin Belousov 2021-04-05 07:11:49 +03:00
parent 2fd1ffefaa
commit 38e0610df7

View File

@ -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