Ver Fonte

Trailing whitespace fix

Taddeus Kroes há 12 anos atrás
pai
commit
9406a1de2f
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      test/testsuite/functional_test/7_euclides.cvc

+ 2 - 2
test/testsuite/functional_test/7_euclides.cvc

@@ -10,10 +10,10 @@ extern void printNewlines( int num);
 export int main() {
     int a = scanInt();
     int b = scanInt();
-    int gcd() 
+    int gcd()
 	{
         int t;
-        while(b != 0) 
+        while(b != 0)
 		{
             t = b;
             b = a % b;