|
|
1.1 root 1: /* (-lgl
2: * COHERENT Version 3.2.1
3: * Copyright (c) 1982, 1992 by Mark Williams Company.
4: * All rights reserved. May not be copied without permission.
5: -lgl) */
6: /*
7: * setjmp.h
8: * Structure for a setjmp environment.
9: * i8086 SMALL model: saves 3 words (SP, BP, return PC).
10: * i8086 LARGE model: saves 4 words (SP, BP, return PC segment:offset).
11: * i386: saves 6 dwords (EBP, ESP, return PC, ESI, EDI, EBX).
12: */
13:
14: #ifndef SETJMP_H
15: #define SETJMP_H SETJMP_H
16:
17: #if _I386
18: typedef int jmp_buf[6];
19: #else
20: typedef int jmp_buf[4];
21: #endif
22:
23: #endif
24:
25: /* end of setjmp.h */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.