diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:24 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:24 -0800 |
commit | 1edcb9b62a1a520eddae8403c19d841c9b18737f (patch) | |
tree | bc0a43d9b3905726a76ed6f0528b54275f23d082 /ecrt0.c | |
parent | 5ca6e8e6a4e5c022a6fb5d28f30219c22c99eda8 (diff) | |
download | scm-1edcb9b62a1a520eddae8403c19d841c9b18737f.tar.gz scm-1edcb9b62a1a520eddae8403c19d841c9b18737f.zip |
Import Upstream version 5b3upstream/5b3
Diffstat (limited to 'ecrt0.c')
-rw-r--r-- | ecrt0.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -596,9 +596,19 @@ asm (" add %o1, %o2, %o2"); asm (" sethi %hi(_environ), %o3"); asm (" st %o2, [%o3+%lo(_environ)]"); asm (" andn %sp, 7, %sp"); +/* added by Denys Duchier */ +#ifdef __svr4__ +asm (" call main"); +#else asm (" call _main"); +#endif asm (" sub %sp, 24, %sp"); +/* added by Denys Duchier */ +#ifdef __svr4__ +asm (" call _exit"); +#else asm (" call __exit"); +#endif asm (" nop"); #endif /* sparc */ |