chiark / gitweb /
[PATCH] oops forgot to add the new klibc/include directory
[elogind.git] / klibc / include / arch / s390 / klibc / archsetjmp.h
1 /*
2  * arch/s390/include/klibc/archsetjmp.h
3  */
4
5 #ifndef _KLIBC_ARCHSETJMP_H
6 #define _KLIBC_ARCHSETJMP_H
7
8 struct __jmp_buf {
9   uint32_t __gregs[10]; /* general registers r6-r15 */
10   uint64_t __fpregs[2]; /* fp registers f4 and f6   */
11 };
12
13 typedef struct __jmp_buf jmp_buf[1];
14
15 #endif /* _SETJMP_H */