Make the END() argument match the entry name.

This commit is contained in:
kleink 2001-05-07 17:19:17 +00:00
parent 27a5a43c04
commit 6814785547
4 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: brk.S,v 1.8 2000/06/26 06:25:36 kleink Exp $ */
/* $NetBSD: brk.S,v 1.9 2001/05/07 17:19:17 kleink Exp $ */
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
@ -51,4 +51,4 @@ L1: LDGP(pv)
stq a0, __curbrk
mov zero, v0
RET
END(brk)
END(_brk)

View File

@ -1,4 +1,4 @@
/* $NetBSD: fork.S,v 1.3 2000/06/26 06:32:54 kleink Exp $ */
/* $NetBSD: fork.S,v 1.4 2001/05/07 17:19:18 kleink Exp $ */
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
@ -37,4 +37,4 @@ LEAF(_fork, 0)
CALLSYS_ERROR(fork)
cmovne a4, zero, v0 /* a4 (rv[1]) != 0, child */
RET
END(fork)
END(_fork)

View File

@ -1,4 +1,4 @@
/* $NetBSD: pipe.S,v 1.3 2000/09/28 08:38:53 kleink Exp $ */
/* $NetBSD: pipe.S,v 1.4 2001/05/07 17:19:18 kleink Exp $ */
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
@ -39,4 +39,4 @@ LEAF(_pipe, 0)
stl a4, 4(a0)
mov zero, v0
RET
END(pipe)
END(_pipe)

View File

@ -1,4 +1,4 @@
/* $NetBSD: sbrk.S,v 1.8 2000/06/26 06:25:36 kleink Exp $ */
/* $NetBSD: sbrk.S,v 1.9 2001/05/07 17:19:18 kleink Exp $ */
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
@ -49,4 +49,4 @@ L1: LDGP(pv)
stq a0, __curbrk
mov a1, v0
RET
END(sbrk)
END(_sbrk)