Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-5]: src/lib/libc/arch/sparc64/sys Pull up revs. 1.4-1.5 (approv...
details: https://anonhg.NetBSD.org/src/rev/7c5167594564
branches: netbsd-1-5
changeset: 489191:7c5167594564
user: kleink <kleink%NetBSD.org@localhost>
date: Tue Aug 22 07:28:15 2000 +0000
description:
Pull up revs. 1.4-1.5 (approved by thorpej):
Add internal names for brk(), sbrk() and fork().
diffstat:
lib/libc/arch/sparc64/sys/sbrk.S | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diffs (37 lines):
diff -r 24bbeae10815 -r 7c5167594564 lib/libc/arch/sparc64/sys/sbrk.S
--- a/lib/libc/arch/sparc64/sys/sbrk.S Tue Aug 22 07:27:25 2000 +0000
+++ b/lib/libc/arch/sparc64/sys/sbrk.S Tue Aug 22 07:28:15 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sbrk.S,v 1.3.10.1 2000/07/26 23:55:01 mycroft Exp $ */
+/* $NetBSD: sbrk.S,v 1.3.10.2 2000/08/22 07:28:15 kleink Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -44,7 +44,7 @@
#if 0
.asciz "@(#)sbrk.s 8.1 (Berkeley) 6/4/93"
#else
- RCSID("$NetBSD: sbrk.S,v 1.3.10.1 2000/07/26 23:55:01 mycroft Exp $")
+ RCSID("$NetBSD: sbrk.S,v 1.3.10.2 2000/08/22 07:28:15 kleink Exp $")
#endif
#endif /* SYSLIBC_SCCS and not lint */
@@ -53,13 +53,17 @@
.globl _C_LABEL(__curbrk)
.globl _C_LABEL(_end)
+#ifdef WEAK_ALIAS
+WEAK_ALIAS(sbrk, _sbrk)
+#endif
+
.data
.align 8
_C_LABEL(__curbrk):
.xword _C_LABEL(_end)
.text
-ENTRY(sbrk)
+ENTRY(_sbrk)
#ifdef PIC
PIC_PROLOGUE(%o5,%o4)
set _C_LABEL(__curbrk), %o3
Home |
Main Index |
Thread Index |
Old Index