blob: 88ded383770c717b4c5fd0ca81c3074ea19f7881 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | /* This file is lisenced under LGPL.
 * Copyright (C) 2002-2003,    George Thanos <george.thanos@gdt.gr>
 *                             Yannis Mitsos <yannis.mitsos@gdt.gr>
 */
#ifndef _SETJMP_H
# error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
#endif
typedef struct {
	unsigned long G3;
	unsigned long G4;
	unsigned long SavedSP;
	unsigned long SavedPC;
	unsigned long SavedSR;
	unsigned long ReturnValue;
} __jmp_buf[1];
 |