| 12345678910111213141516171819202122 | /* 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."#endiftypedef 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 */
 |