summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Rabson <dfr@FreeBSD.org>2001-09-06 18:11:16 +0000
committerDoug Rabson <dfr@FreeBSD.org>2001-09-06 18:11:16 +0000
commit4ce0b9f86dc49fe145079c51a1b86146d0656b12 (patch)
treea3802fd42f52aa2a41c95231f3eed79c31caf23e
parent5cd462d2661674ecec3c930958b70f1dcc44064d (diff)
Notes
-rw-r--r--sys/ia64/include/setjmp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ia64/include/setjmp.h b/sys/ia64/include/setjmp.h
index 24636c1aff35..5774efcd63c3 100644
--- a/sys/ia64/include/setjmp.h
+++ b/sys/ia64/include/setjmp.h
@@ -103,11 +103,11 @@
* internally to avoid some run-time errors for mismatches.
*/
#ifndef _ANSI_SOURCE
-typedef struct {
+typedef struct _sigjmp_buf {
char Buffer[ J_END + JMPBUF_ALIGNMENT ];
} sigjmp_buf[1];
#endif /* not ANSI */
-typedef struct {
+typedef struct _jmp_buf {
char Buffer[ J_END + JMPBUF_ALIGNMENT ];
} jmp_buf[1];
#endif