summaryrefslogtreecommitdiffstats
path: root/ecrt0.c
diff options
context:
space:
mode:
authorRob Browning <rlb@cs.utexas.edu>1997-12-12 17:29:42 -0600
committerBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:24 -0800
commitf64b2806c1d66a1341bb8b1491f384169ab1d65f (patch)
tree8b97dbe3640c60927959b0e63461ef9fcae591e0 /ecrt0.c
parent6dcb175d7f34d9f5a0b3ba623f94454ec16a73d6 (diff)
parent1edcb9b62a1a520eddae8403c19d841c9b18737f (diff)
downloadscm-f64b2806c1d66a1341bb8b1491f384169ab1d65f.tar.gz
scm-f64b2806c1d66a1341bb8b1491f384169ab1d65f.zip
Import Debian changes 5b3-1debian/5b3-1
scm (5b3-1) unstable; urgency=low * New maintainer * New version * libc6
Diffstat (limited to 'ecrt0.c')
-rw-r--r--ecrt0.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/ecrt0.c b/ecrt0.c
index a9c7f28..654b938 100644
--- a/ecrt0.c
+++ b/ecrt0.c
@@ -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 */