chiark / gitweb /
[PATCH] added klibc version 0.82 (cvs tree) to the udev tree.
[elogind.git] / klibc / klibc / arch / sh / include / klibc / archsetjmp.h
1 /*
2  * arch/sh/include/klibc/archsetjmp.h
3  */
4
5 #ifndef _KLIBC_ARCHSETJMP_H
6 #define _KLIBC_ARCHSETJMP_H
7
8 struct __jmp_buf {
9   unsigned long r8;
10   unsigned long r9;
11   unsigned long r10;
12   unsigned long r11;
13   unsigned long r12;
14   unsigned long r13;
15   unsigned long r14;
16   unsigned long r15;
17   unsigned long pr;
18 };
19
20 typedef struct __jmp_buf jmp_buf[1];
21
22 #endif /* _KLIBC_ARCHSETJMP_H */