It's `exit(0)', not `exit()'!
authorAlexandre Oliva <aoliva@gcc.gnu.org>
Wed, 9 Aug 2000 13:14:54 +0000 (13:14 +0000)
committerAlexandre Oliva <aoliva@gcc.gnu.org>
Wed, 9 Aug 2000 13:14:54 +0000 (13:14 +0000)
From-SVN: r35591

gcc/testsuite/gcc.c-torture/execute/20000808-1.c

index 5c66fb9452d8e51b0443bcc60d3ee400d1fbbd81..a905aad96dbe380a18c2089764908214e05c035e 100644 (file)
@@ -52,5 +52,5 @@ int
 main()
 {
   foo();
-  exit();
+  exit(0);
 }