From: Doug Evans Date: Wed, 10 May 1995 18:21:05 +0000 (+0000) Subject: * libgcc1-test.c (main_without__main): Renamed from `main'. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0d5b1231b3e2263b1fd9ef8642876486f9cd5231;p=gcc.git * libgcc1-test.c (main_without__main): Renamed from `main'. From-SVN: r9611 --- 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 ();