repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 6.02~pre8+dfsg.
[syslinux-debian/hramrach.git]
/
com32
/
include
/
klibc
/
archsetjmp.h
blob
a0def6a166524f701340c1bf379f27eb4989494a
1
/*
2
* arch/i386/include/klibc/archsetjmp.h
3
*/
4
5
#ifndef _KLIBC_ARCHSETJMP_H
6
#define _KLIBC_ARCHSETJMP_H
7
8
struct
__jmp_buf
{
9
unsigned int
__ebx
;
10
unsigned int
__esp
;
11
unsigned int
__ebp
;
12
unsigned int
__esi
;
13
unsigned int
__edi
;
14
unsigned int
__eip
;
15
};
16
17
typedef
struct
__jmp_buf
jmp_buf
[
1
];
18
19
#endif
/* _SETJMP_H */