Commit 5dbd3b80 by Ian Lance Taylor

libgo/runtime: return 0, not NULL, from main

    
    Reviewed-on: https://go-review.googlesource.com/13421

From-SVN: r227673
parent 5ece4d05
9bac6243d2252b2d043243d6ab1123ba7e90fa53 352617bfe0a880febf5d2a87e89ea439c742ba18
The first line of this file holds the git revision number of the last The first line of this file holds the git revision number of the last
merge done from the gofrontend repository. merge done from the gofrontend repository.
...@@ -38,7 +38,7 @@ main (int argc, char **argv) ...@@ -38,7 +38,7 @@ main (int argc, char **argv)
runtime_isarchive = false; runtime_isarchive = false;
if (runtime_isstarted) if (runtime_isstarted)
return NULL; return 0;
runtime_isstarted = true; runtime_isstarted = true;
runtime_check (); runtime_check ();
......
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