Used command line to remove empty lines at end of file:
find . -type f -exec sed -i -e :a -e '/^\n*$/{$d;N;};/\n$/ba' {} \;
Change-Id: I816ac9666b6dbb7c7e47843672f0d5cc499766a3
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: http://review.coreboot.org/10446
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			262 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			262 B
		
	
	
	
		
			C
		
	
	
	
	
	
| 
 | |
| 
 | |
| struct big_arg {
 | |
| 	int x, y;
 | |
| };
 | |
| struct result {
 | |
| 	struct big_arg a;
 | |
| 	int c, d;
 | |
| };
 | |
| 
 | |
| static struct result main(int a, int b, int c, int  d)
 | |
| {
 | |
| 	struct result result;
 | |
| 	result.a.x = d + 1;
 | |
| 	result.a.y = c + 1;
 | |
| 	result.c = b + 1;
 | |
| 	result.d = a + 1;
 | |
| 
 | |
| 	return result;
 | |
| }
 |