]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/sofini.c
elf: Fix hwcaps string size overestimation
[thirdparty/glibc.git] / elf / sofini.c
CommitLineData
650425ce
UD
1/* Terminate the frame unwind info section with a 4byte 0 as a sentinel;
2 this would be the 'length' field in a real FDE. */
3
4typedef unsigned int ui32 __attribute__ ((mode (SI)));
03e81bce
RM
5static const ui32 __FRAME_END__[1]
6 __attribute__ ((used, section (".eh_frame")))
7 = { 0 };