Explorar el Código

Trailing whitespace fix

Taddeus Kroes hace 12 años
padre
commit
9406a1de2f
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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;