From 7b9654d095e225476a07add6e6f1b6f4b4c451bc Mon Sep 17 00:00:00 2001 From: matt Date: Fri, 23 Oct 1998 00:52:53 +0000 Subject: [PATCH] entry needs to be start, not _start --- lib/csu/vax/crt0.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/csu/vax/crt0.c b/lib/csu/vax/crt0.c index c4d8aa7b78b4..0b23b19f5484 100644 --- a/lib/csu/vax/crt0.c +++ b/lib/csu/vax/crt0.c @@ -1,4 +1,4 @@ -/* $NetBSD: crt0.c,v 1.9 1998/10/19 01:37:35 matt Exp $ */ +/* $NetBSD: crt0.c,v 1.10 1998/10/23 00:52:53 matt Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -50,9 +50,9 @@ struct kframe { asm(" .text"); asm(" .align 2"); - asm(" .globl _start"); - asm(" .type _start,@function"); - asm(" _start:"); + asm(" .globl start"); + asm(" .type start,@function"); + asm(" start:"); asm(" .word 0x0101"); /* two nops just in case */ asm(" pushl sp"); /* no registers to save */ asm(" calls $1,___start"); /* do the real start */ @@ -117,7 +117,7 @@ asm ("__callmain:"); /* Defined for the benefit of debuggers */ #include "common.c" #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: crt0.c,v 1.9 1998/10/19 01:37:35 matt Exp $"); +__RCSID("$NetBSD: crt0.c,v 1.10 1998/10/23 00:52:53 matt Exp $"); #endif /* LIBC_SCCS and not lint */ #ifdef MCRT0