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/powerpc/sys Pull up revs. 1.7-1.8 (approv...



details:   https://anonhg.NetBSD.org/src/rev/9c2a9c285100
branches:  netbsd-1-5
changeset: 489181:9c2a9c285100
user:      kleink <kleink%NetBSD.org@localhost>
date:      Tue Aug 22 07:17:43 2000 +0000

description:
Pull up revs. 1.7-1.8 (approved by thorpej):
Add internal names for brk(), sbrk() and fork().

diffstat:

 lib/libc/arch/powerpc/sys/sbrk.S |  8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r ad3d582d0353 -r 9c2a9c285100 lib/libc/arch/powerpc/sys/sbrk.S
--- a/lib/libc/arch/powerpc/sys/sbrk.S  Tue Aug 22 07:17:06 2000 +0000
+++ b/lib/libc/arch/powerpc/sys/sbrk.S  Tue Aug 22 07:17:43 2000 +0000
@@ -1,16 +1,20 @@
-/*     $NetBSD: sbrk.S,v 1.6 1999/03/31 11:53:08 kleink Exp $  */
+/*     $NetBSD: sbrk.S,v 1.6.10.1 2000/08/22 07:17:43 kleink Exp $     */
 
 #include "SYS.h"
 
        .globl  _C_LABEL(__curbrk)
        .globl  _C_LABEL(_end)
 
+#ifdef WEAK_ALIAS
+WEAK_ALIAS(sbrk, _sbrk)
+#endif
+
        .data
 _C_LABEL(__curbrk):
        .long   _C_LABEL(_end)
        .text
 
-ENTRY(sbrk)
+ENTRY(_sbrk)
 #ifdef PIC
        mflr    10
        bl      _GLOBAL_OFFSET_TABLE_@local-4



Home | Main Index | Thread Index | Old Index