summaryrefslogtreecommitdiff
path: root/arch/mips/bits/setjmp.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2014-03-18 21:52:24 -0400
committerRich Felker <dalias@aerifal.cx>2014-03-18 21:52:24 -0400
commitcee45f9cb22ce53f4c3fa72ddce091d260c1a6d1 (patch)
tree1cda5d867146a38f1387205ef6a4f568f7b12c62 /arch/mips/bits/setjmp.h
parentd444064d5a1fad60033378a3dd58b3371981e5c5 (diff)
downloadmusl-cee45f9cb22ce53f4c3fa72ddce091d260c1a6d1.tar.gz
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.
Diffstat (limited to 'arch/mips/bits/setjmp.h')
-rw-r--r--arch/mips/bits/setjmp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/bits/setjmp.h b/arch/mips/bits/setjmp.h
index 467872e9..30229a0b 100644
--- a/arch/mips/bits/setjmp.h
+++ b/arch/mips/bits/setjmp.h
@@ -1 +1 @@
-typedef unsigned long long __jmp_buf[15];
+typedef unsigned long long __jmp_buf[13];