mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-01 17:12:11 +00:00

Drop all duplicate newlines. No functional change. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
14 lines
236 B
C
14 lines
236 B
C
#ifndef _ASM_PPC_SIGCONTEXT_H
|
|
#define _ASM_PPC_SIGCONTEXT_H
|
|
|
|
#include <asm/ptrace.h>
|
|
|
|
struct sigcontext_struct {
|
|
unsigned long _unused[4];
|
|
int signal;
|
|
unsigned long handler;
|
|
unsigned long oldmask;
|
|
struct pt_regs *regs;
|
|
};
|
|
|
|
#endif
|