Add struct tags to avoid warnings in kernel code.

This commit is contained in:
Doug Rabson 2001-09-06 18:11:16 +00:00
parent 5cd462d266
commit 4ce0b9f86d

View File

@ -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