Commit 0d5b1231 by Doug Evans

* libgcc1-test.c (main_without__main): Renamed from `main'.

From-SVN: r9611
parent 7f5b8ca7
......@@ -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 ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment