From: Martin v. Löwis Date: Mon, 3 May 1999 12:41:53 +0000 (+0000) Subject: Have main return int X-Git-Tag: prereleases/gcc-2.95-test~655 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=234af032118d7ec2544fcdb00e7d725b3205d7fb;p=thirdparty%2Fgcc.git Have main return int From-SVN: r26747 --- diff --git a/gcc/testsuite/g++.old-deja/g++.ns/template9.C b/gcc/testsuite/g++.old-deja/g++.ns/template9.C index 836c022a736b..1b50a5f626ad 100644 --- a/gcc/testsuite/g++.old-deja/g++.ns/template9.C +++ b/gcc/testsuite/g++.old-deja/g++.ns/template9.C @@ -32,7 +32,7 @@ namespace matrix { } -main(void) +int main(void) { // sample double **m=matrix::alloc(10,20);