diff options
| author | Bruce Evans <bde@FreeBSD.org> | 2000-10-06 11:53:32 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 2000-10-06 11:53:32 +0000 |
| commit | cc46dff67f02fc977315809f3858b7aefc360705 (patch) | |
| tree | 8d67a0bc39919452556b706746db4b222ca86a54 /sys/amd64/include | |
| parent | 5e36b573bc4d95b1d66564a281ce959b353e3ac2 (diff) | |
Notes
Diffstat (limited to 'sys/amd64/include')
| -rw-r--r-- | sys/amd64/include/setjmp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/include/setjmp.h b/sys/amd64/include/setjmp.h index 3097df77f0a3..a311d837c968 100644 --- a/sys/amd64/include/setjmp.h +++ b/sys/amd64/include/setjmp.h @@ -40,7 +40,7 @@ * internally to avoid some run-time errors for mismatches. */ #ifndef _ANSI_SOURCE -typedef struct { int _sjb[_JBLEN + 1]; } sigjmp_buf[1]; +typedef struct _sigjmp_buf { int _sjb[_JBLEN + 1]; } sigjmp_buf[1]; #endif /* not ANSI */ -typedef struct { int _jb[_JBLEN + 1]; } jmp_buf[1]; +typedef struct _jmp_buf { int _jb[_JBLEN + 1]; } jmp_buf[1]; |
