summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/asm/sigcontext.h
blob: c4a720cc08a467aa3edee638dbefb036a51c7bd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef _ASM_SIGCONTEXT_H
#define _ASM_SIGCONTEXT_H

#if defined(__i386__) || defined(__x86_64__)
#include <asm/i386-sigcontext.h>
#endif

#ifdef __sparc__
#include <asm/sparc-sigcontext.h>
#endif

#ifdef __mips__
#include <asm/mips-sigcontext.h>
#endif

#ifdef __powerpc__
#include <asm/ppc-sigcontext.h>
#endif

#ifdef __alpha__
#include <asm/alpha-sigcontext.h>
#endif

#ifdef __arm__
#include <asm/arm-sigcontext.h>
#endif

#ifdef __hppa__
#include <asm/parisc-sigcontext.h>
#endif

#ifdef __ia64__
#include <asm/ia64-sigcontext.h>
#endif

#endif