Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / util / romcc / tests / simple_test76.c
index 4f682d37d41c8366f3ef56e908cc453e8c4e0ee0..74b1cf1657fcb391d80ad27805e79f4992b2f6dc 100644 (file)
@@ -23,7 +23,7 @@ static struct syscall_result syscall1(unsigned long nr, unsigned long arg1)
                : "=a" (res)
                : "a" (nr), "b" (arg1));
        return syscall_return(res);
-       
+
 }
 
 static struct syscall_result syscall3(unsigned long nr, unsigned long arg1, unsigned long arg2,
@@ -35,7 +35,7 @@ static struct syscall_result syscall3(unsigned long nr, unsigned long arg1, unsi
                : "=a" (res)
                : "a" (nr), "b" (arg1), "c" (arg2), "d" (arg3));
        return syscall_return(res);
-       
+
 }
 
 #define NR_exit                 1