Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/csu/vax_elf Make __start global.



details:   https://anonhg.NetBSD.org/src/rev/2e965e762c95
branches:  trunk
changeset: 514692:2e965e762c95
user:      matt <matt%NetBSD.org@localhost>
date:      Sat Sep 08 18:59:20 2001 +0000

description:
Make __start global.

diffstat:

 lib/csu/vax_elf/crt0.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r a4ebde40d5a7 -r 2e965e762c95 lib/csu/vax_elf/crt0.c
--- a/lib/csu/vax_elf/crt0.c    Sat Sep 08 18:26:05 2001 +0000
+++ b/lib/csu/vax_elf/crt0.c    Sat Sep 08 18:59:20 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: crt0.c,v 1.5 2000/07/03 03:56:56 matt Exp $ */
+/* $NetBSD: crt0.c,v 1.6 2001/09/08 18:59:20 matt Exp $ */
 
 /*
  * Copyright (c) 1999 Matt Thomas
@@ -44,6 +44,7 @@
        .text
        .align  2
        .globl  _start
+       .globl  __start
 __start:
 _start:
        .word   0x0101
@@ -98,7 +99,7 @@
  * NOTE: Leave the RCS ID _after_ __start(), in case it gets placed in .text.
  */
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: crt0.c,v 1.5 2000/07/03 03:56:56 matt Exp $");
+__RCSID("$NetBSD: crt0.c,v 1.6 2001/09/08 18:59:20 matt Exp $");
 #endif /* LIBC_SCCS and not lint */
 
 #include "common.c"



Home | Main Index | Thread Index | Old Index