blob: 216d7bdd64cff6ccfdef09eabf1ed5da604fa7d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Define the machine-dependent type `jmp_buf'. Stub version. */
#ifndef _SETJMP_H
# error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
#endif
/* XXX This should go into different files!!! */
#ifdef __hp9000s300
typedef int __jmp_buf[100];
#endif /* __hp9000s300 */
#ifdef __hp9000s800
typedef double __jmp_buf[25];
#endif /* __hp9000s800 */
|