Fix weak alias.

This commit is contained in:
tsubai 2000-12-16 01:40:38 +00:00
parent c3b1f98e93
commit 7ec5b1f483
4 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: brk.S,v 1.5 2000/08/04 09:19:39 tsubai Exp $ */
/* $NetBSD: brk.S,v 1.6 2000/12/16 01:40:38 tsubai Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -40,13 +40,13 @@
#include <machine/asm.h>
#if defined(SYSLIBC_SCCS) && !defined(lint)
RCSID("$NetBSD: brk.S,v 1.5 2000/08/04 09:19:39 tsubai Exp $")
RCSID("$NetBSD: brk.S,v 1.6 2000/12/16 01:40:38 tsubai Exp $")
#endif /* SYSLIBC_SCCS and not lint */
#include "SYS.h"
#ifdef WEAK_ALIAS
WEAK_ALIAS(_brk, __brk)
WEAK_ALIAS(brk,_brk)
#endif
.data

View File

@ -1,4 +1,4 @@
/* $NetBSD: fork.S,v 1.3 2000/06/26 06:33:02 kleink Exp $ */
/* $NetBSD: fork.S,v 1.4 2000/12/16 01:40:39 tsubai Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -40,13 +40,13 @@
#include <machine/asm.h>
#if defined(SYSLIBC_SCCS) && !defined(lint)
RCSID("$NetBSD: fork.S,v 1.3 2000/06/26 06:33:02 kleink Exp $")
RCSID("$NetBSD: fork.S,v 1.4 2000/12/16 01:40:39 tsubai Exp $")
#endif /* SYSLIBC_SCCS and not lint */
#include "SYS.h"
#ifdef WEAK_ALIAS
WEAK_ALIAS(fork, _fork)
WEAK_ALIAS(fork,_fork)
#endif
.text

View File

@ -1,4 +1,4 @@
/* $NetBSD: pipe.S,v 1.3 2000/09/28 08:38:55 kleink Exp $ */
/* $NetBSD: pipe.S,v 1.4 2000/12/16 01:40:39 tsubai Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -40,13 +40,13 @@
#include <machine/asm.h>
#if defined(SYSLIBC_SCCS) && !defined(lint)
RCSID("$NetBSD: pipe.S,v 1.3 2000/09/28 08:38:55 kleink Exp $")
RCSID("$NetBSD: pipe.S,v 1.4 2000/12/16 01:40:39 tsubai Exp $")
#endif /* SYSLIBC_SCCS and not lint */
#include "SYS.h"
#ifdef WEAK_ALIAS
WEAK_ALIAS(pipe, _pipe)
WEAK_ALIAS(pipe,_pipe)
#endif
_SYSCALL(_pipe,pipe)

View File

@ -1,4 +1,4 @@
/* $NetBSD: sbrk.S,v 1.4 2000/06/26 06:25:44 kleink Exp $ */
/* $NetBSD: sbrk.S,v 1.5 2000/12/16 01:40:39 tsubai Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -40,7 +40,7 @@
#include <machine/asm.h>
#if defined(SYSLIBC_SCCS) && !defined(lint)
RCSID("$NetBSD: sbrk.S,v 1.4 2000/06/26 06:25:44 kleink Exp $")
RCSID("$NetBSD: sbrk.S,v 1.5 2000/12/16 01:40:39 tsubai Exp $")
#endif /* SYSLIBC_SCCS and not lint */
#include "SYS.h"
@ -49,7 +49,7 @@
.globl curbrk
#ifdef WEAK_ALIAS
WEAK_ALIAS(sbrk, _sbrk)
WEAK_ALIAS(sbrk,_sbrk)
#endif
.data