summaryrefslogtreecommitdiffstats
path: root/src/arch/i386/include/setjmp.h
blob: 60e4b1209d2b28102dfa27f8a905dfef0401b9ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef ETHERBOOT_SETJMP_H
#define ETHERBOOT_SETJMP_H


/* Define a type for use by setjmp and longjmp */
#define JBLEN 6
typedef unsigned long jmp_buf[JBLEN];

extern int __asmcall setjmp (jmp_buf env);
extern void __asmcall longjmp (jmp_buf env, int val);

#endif /* ETHERBOOT_SETJMP_H */