chiark / gitweb /
bd639c0b00ad34e19f07ae83ceb7b5c3e7f4607f
[elogind.git] / klibc / include / arch / ia64 / klibc / archsetjmp.h
1 /*
2  * arch/ia64/include/klibc/archsetjmp.h
3  *
4  * Code borrowed from the FreeBSD kernel.
5  *
6  */
7
8 #ifndef _KLIBC_ARCHSETJMP_H
9 #define _KLIBC_ARCHSETJMP_H
10
11 /* User code must not depend on the internal representation of jmp_buf. */
12 #define _JBLEN 0x200
13
14 /* guaranteed 128-bit alignment! */
15 typedef char jmp_buf[_JBLEN] __attribute__ ((aligned (16)));
16
17 #endif