aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMartin v. Löwis <loewis@gcc.gnu.org>1999-05-03 12:41:53 +0000
committerMartin v. Löwis <loewis@gcc.gnu.org>1999-05-03 12:41:53 +0000
commit234af032118d7ec2544fcdb00e7d725b3205d7fb (patch)
tree276d780f7cf6a68085b78d81e5ee9c8064eab8df /gcc
parentdb898cddb054fe9898d3fb9a9a6789826f794a58 (diff)
downloadgcc-234af032118d7ec2544fcdb00e7d725b3205d7fb.zip
gcc-234af032118d7ec2544fcdb00e7d725b3205d7fb.tar.gz
gcc-234af032118d7ec2544fcdb00e7d725b3205d7fb.tar.bz2
Have main return int
From-SVN: r26747
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.ns/template9.C2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.ns/template9.C b/gcc/testsuite/g++.old-deja/g++.ns/template9.C
index 836c022..1b50a5f 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<double>(10,20);