summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/com32/include/klibc/archsetjmp.h
blob: a0def6a166524f701340c1bf379f27eb4989494a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * arch/i386/include/klibc/archsetjmp.h
 */

#ifndef _KLIBC_ARCHSETJMP_H
#define _KLIBC_ARCHSETJMP_H

struct __jmp_buf {
    unsigned int __ebx;
    unsigned int __esp;
    unsigned int __ebp;
    unsigned int __esi;
    unsigned int __edi;
    unsigned int __eip;
};

typedef struct __jmp_buf jmp_buf[1];

#endif /* _SETJMP_H */