 5886269962
			
		
	
	
	5886269962
	
	
	
		
			
			Many files include the filename at the beginning, serveral used a wrong one. Signed-off-by: Uwe Kleine-König <ukleinek@informatik.uni-freiburg.de> Signed-off-by: Adrian Bunk <bunk@stusta.de>
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			363 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			363 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * arch/um/include/sysdep-i386/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];
 | |
| 
 | |
| #define JB_IP __eip
 | |
| #define JB_SP __esp
 | |
| 
 | |
| #endif				/* _SETJMP_H */
 |