diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-01-02 20:25:32 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-01-02 20:25:32 +0000 |
commit | e750c316c70105ab226f95c4a016aa4f98776321 (patch) | |
tree | 039ead75394aa2509e0b170cc0ecc7ddaad1b4fc /lib/libc/arch/m88k/sys/syscall.S | |
parent | b65354efaeed93200f88e8b7e144b68158fe0e23 (diff) |
Rename cerror to __cerror and curbrk to __curbrk, to avoid namespace
pollution. Conforming to art@'s evil plans.
Diffstat (limited to 'lib/libc/arch/m88k/sys/syscall.S')
-rw-r--r-- | lib/libc/arch/m88k/sys/syscall.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/arch/m88k/sys/syscall.S b/lib/libc/arch/m88k/sys/syscall.S index a596e6f0a94..dfbf1119e05 100644 --- a/lib/libc/arch/m88k/sys/syscall.S +++ b/lib/libc/arch/m88k/sys/syscall.S @@ -1,4 +1,4 @@ -/* $OpenBSD: syscall.S,v 1.2 2000/03/01 17:31:22 todd Exp $ */ +/* $OpenBSD: syscall.S,v 1.3 2003/01/02 20:25:31 miod Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -40,7 +40,7 @@ #if defined(LIBC_SCCS) && !defined(lint) .data /*.asciz "from: @(#)syscall.s 5.1 (Berkeley) 5/12/90"*/ - .asciz "$OpenBSD: syscall.S,v 1.2 2000/03/01 17:31:22 todd Exp $" + .asciz "$OpenBSD: syscall.S,v 1.3 2003/01/02 20:25:31 miod Exp $" .text #endif /* LIBC_SCCS and not lint */ @@ -52,5 +52,5 @@ ENTRY(syscall) ld r12,r31,40 or r9,r0,0 tb0 0,r0,128 - br cerror + br __cerror jmp r1 |