]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/asm-ppc/sigcontext.h
Big white-space cleanup.
[people/ms/u-boot.git] / include / asm-ppc / sigcontext.h
CommitLineData
3ba68654
WD
1#ifndef _ASM_PPC_SIGCONTEXT_H
2#define _ASM_PPC_SIGCONTEXT_H
3
4#include <asm/ptrace.h>
5
6
7struct sigcontext_struct {
8 unsigned long _unused[4];
9 int signal;
10 unsigned long handler;
11 unsigned long oldmask;
53677ef1 12 struct pt_regs *regs;
3ba68654
WD
13};
14
15#endif