Code beautification with uncrustify
[alexxy/gromacs.git] / src / gromacs / gmxlib / physics_test.c
index 323c54e553bffcdd4d1b5f928c0f3cc8efb98641..0cb4f65f7218616bf8427ccc850de022f3fd1bf3 100644 (file)
@@ -1,16 +1,17 @@
 #include <stdio.h>
 #include "physics.h"
 
-int main(int argc,char *argv[])
+int main(int argc, char *argv[])
 {
-  int i;
-  double x,y,z;
-  
-  x = 3.25; 
-  for(i=0; (i<eg2cNR); i++) {
-    y = gmx2convert(x,i);
-    z = convert2gmx(y,i);
-    printf("Converted %g [type %d] to %g and back to %g. Diff %g\n",
-          x,i,y,z,x-z);
-  }
+    int    i;
+    double x, y, z;
+
+    x = 3.25;
+    for (i = 0; (i < eg2cNR); i++)
+    {
+        y = gmx2convert(x, i);
+        z = convert2gmx(y, i);
+        printf("Converted %g [type %d] to %g and back to %g. Diff %g\n",
+               x, i, y, z, x-z);
+    }
 }