mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 00:11:51 +01:00 
			
		
		
		
	This commit gets rid of a huge amount of silly white-space issues. Especially, all sequences of SPACEs followed by TAB characters get removed (unless they appear in print statements). Also remove all embedded "vim:" and "vi:" statements which hide indentation problems. Signed-off-by: Wolfgang Denk <wd@denx.de>
		
			
				
	
	
		
			16 lines
		
	
	
		
			237 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			237 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
 |