blob: 88fa76fdfb0744dcc558b2c97341909f169f1f5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* This file is lisenced under LGPL.
* Copyright (C) 2002-2003, George Thanos <george.thanos@gdt.gr>
* Yannis Mitsos <yannis.mitsos@gdt.gr>
*/
#ifndef _BITS_SETJMP_H
#define _BITS_SETJMP_H 1
#if !defined _SETJMP_H && !defined _PTHREAD_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];
#endif /* bits/setjmp.h */
|