diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-04-23 21:28:17 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-04-23 21:28:17 +0000 |
commit | aa0c9ab9076ef408ae1401a775cd79fcbd4f6cf0 (patch) | |
tree | 012b4df0ddad6d5deff748640db86e909c995fec /lib/csu/mvme88k | |
parent | cee4c7e0a530d69aa2a42a4667b38222c0226e11 (diff) |
Fix "bug" in linker. actually was bug in asm files that did not correctly
align the global data. This allows the workaround in crt0 to be removed.
Diffstat (limited to 'lib/csu/mvme88k')
-rw-r--r-- | lib/csu/mvme88k/crt0.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/csu/mvme88k/crt0.c b/lib/csu/mvme88k/crt0.c index ff5ef2d1339..28f6b5292fe 100644 --- a/lib/csu/mvme88k/crt0.c +++ b/lib/csu/mvme88k/crt0.c @@ -92,12 +92,8 @@ __crt0_real_start(int argc, char *argv[], char *envp[]) { register char *ap; volatile int a = 0; - extern int minbrk asm ("minbrk"); - extern int curbrk asm ("curbrk"); extern int end; - minbrk = (int)&end; - curbrk = (int)&end; environ = envp; /* environ is for the user that can't get at 'envp' */ if (ap = argv[0]) |