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/m68k/sys Pull up revs. 1.11-1.12 (approve...
details: https://anonhg.NetBSD.org/src/rev/f0297adc2bc3
branches: netbsd-1-5
changeset: 489172:f0297adc2bc3
user: kleink <kleink%NetBSD.org@localhost>
date: Tue Aug 22 07:09:52 2000 +0000
description:
Pull up revs. 1.11-1.12 (approved by thorpej):
Add internal names for brk(), sbrk() and fork().
diffstat:
lib/libc/arch/m68k/sys/sbrk.S | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)
diffs (35 lines):
diff -r aa7277aeed7c -r f0297adc2bc3 lib/libc/arch/m68k/sys/sbrk.S
--- a/lib/libc/arch/m68k/sys/sbrk.S Tue Aug 22 07:08:20 2000 +0000
+++ b/lib/libc/arch/m68k/sys/sbrk.S Tue Aug 22 07:09:52 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sbrk.S,v 1.10 1999/10/25 23:48:17 thorpej Exp $ */
+/* $NetBSD: sbrk.S,v 1.10.6.1 2000/08/22 07:09:52 kleink Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -43,18 +43,23 @@
#if 0
RCSID("from: @(#)sbrk.s 5.1 (Berkeley) 5/12/90")
#else
- RCSID("$NetBSD: sbrk.S,v 1.10 1999/10/25 23:48:17 thorpej Exp $")
+ RCSID("$NetBSD: sbrk.S,v 1.10.6.1 2000/08/22 07:09:52 kleink Exp $")
#endif
#endif /* LIBC_SCCS and not lint */
.globl _C_LABEL(end)
.globl CURBRK
+#ifdef WEAK_ALIAS
+WEAK_ALIAS(sbrk, _sbrk)
+#endif
+
.data
CURBRK: .long _C_LABEL(end)
+
.text
-ENTRY(sbrk)
+ENTRY(_sbrk)
#ifdef PIC
#ifdef __ELF__
lea %pc@(_GLOBAL_OFFSET_TABLE_@GOTPC),%a1
Home |
Main Index |
Thread Index |
Old Index