Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Destructor should be virtual.
[simgrid.git] / buildtools / Cmake / test_prog / prog_stackgrowth.c
index c1a9e78..f0f2f1a 100644 (file)
@@ -9,22 +9,23 @@
 static int iterate = 10;
 static int growsdown(int *x)
 {
-    auto int y;
-    y = (x > &y);
-    if (--iterate > 0)
-        y = growsdown(&y);
-    if (y != (x > &y))
-        exit(1);
-    return y;
+  auto int y;
+  y = (x > &y);
+  if (--iterate > 0)
+    y = growsdown(&y);
+  if (y != (x > &y))
+    exit(1);
+  return y;
 }
+
 int main(int argc, char *argv[])
 {
-    FILE *f;
-    auto int x;
-    if ((f = fopen("conftestval", "w")) == NULL)
-        exit(1);
-    fprintf(f, "%s\n", growsdown(&x) ? "down" : "up");;
-    fclose(f);
-    exit(0);
-       return 1;
+  FILE *f;
+  auto int x;
+  if ((f = fopen("conftestval", "w")) == NULL)
+    exit(1);
+  fprintf(f, "%s\n", growsdown(&x) ? "down" : "up");;
+  fclose(f);
+  exit(0);
+  return 1;
 }