Rename __JCR_LIST__ to __JCR_END__ in crtend.c.

This is more consistent with the names used for .ctor and .dtor
symbols and better reflects __JCR_END__'s role.

Reviewed by:	andrew
Obtained from:	CheriBSD
MFC after:	2 weeks
Sponsored by:	DARPA
Differential Revision:	https://reviews.freebsd.org/D27125
This commit is contained in:
John Baldwin 2020-11-10 19:04:54 +00:00
parent 7b516613aa
commit ecad1d050c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=367574

View File

@ -28,7 +28,7 @@ __FBSDID("$FreeBSD$");
typedef void (*crt_func)(void);
static crt_func __JCR_LIST__[] __section(".jcr") __used = {
static crt_func __JCR_END__[] __section(".jcr") __used = {
(crt_func)0
};