From: Alexandre Oliva Date: Wed, 9 Aug 2000 13:14:54 +0000 (+0000) Subject: It's `exit(0)', not `exit()'! X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a58df068f4b9bedbe4917b9d564288ef06b76e6e;p=gcc.git It's `exit(0)', not `exit()'! From-SVN: r35591 --- diff --git a/gcc/testsuite/gcc.c-torture/execute/20000808-1.c b/gcc/testsuite/gcc.c-torture/execute/20000808-1.c index 5c66fb9452d..a905aad96db 100644 --- a/gcc/testsuite/gcc.c-torture/execute/20000808-1.c +++ b/gcc/testsuite/gcc.c-torture/execute/20000808-1.c @@ -52,5 +52,5 @@ int main() { foo(); - exit(); + exit(0); }