diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2003-08-25 17:59:43 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2003-08-25 17:59:43 +0000 |
commit | ccdf72b6046905b3635e15484f81dd20b7c85f7b (patch) | |
tree | 3a6453a9a1b071e78858a7079c7a4edcc727416c /lib/csu/alpha | |
parent | 929d7c4322d68ec2ef963a43fdba732f42679ad9 (diff) |
Define both _start and __start in crt0, all of the other architectures do.
Diffstat (limited to 'lib/csu/alpha')
-rw-r--r-- | lib/csu/alpha/crt0.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/csu/alpha/crt0.c b/lib/csu/alpha/crt0.c index 34fd45e1b67..345941a8eda 100644 --- a/lib/csu/alpha/crt0.c +++ b/lib/csu/alpha/crt0.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crt0.c,v 1.8 2003/02/28 18:05:51 deraadt Exp $ */ +/* $OpenBSD: crt0.c,v 1.9 2003/08/25 17:59:42 drahn Exp $ */ /* $NetBSD: crt0.c,v 1.1 1996/09/12 16:59:02 cgd Exp $ */ /* * Copyright (c) 1995 Christopher G. Demetriou @@ -32,7 +32,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: crt0.c,v 1.8 2003/02/28 18:05:51 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: crt0.c,v 1.9 2003/08/25 17:59:42 drahn Exp $"; #endif /* LIBC_SCCS and not lint */ #include <stdlib.h> @@ -50,6 +50,9 @@ extern void _mcleanup(void); extern unsigned char _etext, _eprol; #endif /* MCRT0 */ +__asm(".globl _start"); +__asm(".type _start@function"); +__asm("_start = __start"); void __start(sp, cleanup, obj) char **sp; |