This website requires JavaScript.
Explore
Help
Sign In
RepoMirrors
/
musl
mirror of
git://git.musl-libc.org/musl
Watch
1
Star
0
Fork
You've already forked musl
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
bb3a3befea
musl
/
arch
/
mips
/
bits
/
setjmp.h
2 lines
42 B
C
Raw
Normal View
History
Unescape
Escape
fix size of mips jmp_buf the excess space was unused and unintentional. this change does not affect the ABI between applications and libc. while it does theoretically affect linkage between third-party translation units using jmp_buf as part of a structure, we've already changed jmp_buf at least once on all archs, and problems were never observed, likely because such usage would be very unusual. in any case it's best to get things right now rather than making changes sometime during the 1.0.x series or later.
2014-03-19 01:52:24 +00:00
typedef
unsigned
long
long
__jmp_buf
[
13
]
;