From 0d5b1231b3e2263b1fd9ef8642876486f9cd5231 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Wed, 10 May 1995 18:21:05 +0000 Subject: [PATCH] * libgcc1-test.c (main_without__main): Renamed from `main'. From-SVN: r9611 --- gcc/libgcc1-test.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gcc/libgcc1-test.c b/gcc/libgcc1-test.c index 43250a9ccdb..9b2a5c42ddf 100644 --- a/gcc/libgcc1-test.c +++ b/gcc/libgcc1-test.c @@ -6,7 +6,10 @@ int foo (); double dfoo (); -main () +/* We don't want __main here because that can drag in atexit (among other + things) which won't necessarily exist yet. */ + +main_without__main () { int a = foo (), b = foo (); unsigned int au = foo (), bu = foo (); -- 2.30.2