Run util/openssl-format-source -v -c .
[openssl.git] / bugs / ultrixcc.c
index ca5b45164bcc9c44021694047ce2bd41e7721918..6e24549d5eb82206957235a5e0742a74d82f6d6f 100644 (file)
  */
 
 main()
-       {
-       f(5);
-       f(0);
-       }
+{
+    f(5);
+    f(0);
+}
 
 int f(a)
 int a;
-       {
-       switch(a&7)
-               {
-       case 7:
-               printf("7\n");
-       case 6:
-               printf("6\n");
-       case 5:
-               printf("5\n");
-       case 4:
-               printf("4\n");
-       case 3:
-               printf("3\n");
-       case 2:
-               printf("2\n");
-       case 1:
-               printf("1\n");
+{
+    switch (a & 7) {
+    case 7:
+        printf("7\n");
+    case 6:
+        printf("6\n");
+    case 5:
+        printf("5\n");
+    case 4:
+        printf("4\n");
+    case 3:
+        printf("3\n");
+    case 2:
+        printf("2\n");
+    case 1:
+        printf("1\n");
 #ifdef FIX_BUG
-       case 0:
-               ;
+    case 0:
+        ;
 #endif
-               }
-       }       
-
+    }
+}