2
0
mirror of https://github.com/xcat2/xNBA.git synced 2026-04-06 21:31:27 +00:00
Files
xNBA/src/arch/ia64/include/setjmp.h
2005-03-08 18:53:11 +00:00

14 lines
332 B
C

#ifndef ETHERBOOT_SETJMP_H
#define ETHERBOOT_SETJMP_H
/* Define a type for use by setjmp and longjmp */
#define JBLEN 70
typedef long jmp_buf[JBLEN] __attribute__ ((aligned (16))); /* guarantees 128-bit alignment! */
extern int setjmp (jmp_buf env);
extern void longjmp (jmp_buf env, int val);
#endif /* ETHERBOOT_SETJMP_H */