chiark / gitweb /
Make run_directory.c stat the place it is going to try to run.
[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