diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-11-05 00:02:21 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-11-05 00:02:21 +0000 |
commit | 7be8045b2b948a9005df064a2a99c581f5b6ad84 (patch) | |
tree | 707ace3d4c9a6931e80c9c275f994f8217e9e0f9 /lib/libc/arch/m68k/sys/syscall.S | |
parent | 848f246f96f38370bd00eed233040330745ad68d (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/m68k/sys/syscall.S')
-rw-r--r-- | lib/libc/arch/m68k/sys/syscall.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arch/m68k/sys/syscall.S b/lib/libc/arch/m68k/sys/syscall.S index 8773885f331..e7d6339d658 100644 --- a/lib/libc/arch/m68k/sys/syscall.S +++ b/lib/libc/arch/m68k/sys/syscall.S @@ -37,7 +37,7 @@ #if defined(SYSLIBC_SCCS) .text - .asciz "$OpenBSD: syscall.S,v 1.3 1999/01/06 23:14:18 d Exp $" + .asciz "$OpenBSD: syscall.S,v 1.4 2002/11/05 00:02:20 miod Exp $" #endif /* SYSLIBC_SCCS */ #include "SYS.h" @@ -48,4 +48,4 @@ SYSENTRY(syscall) jcs err rts err: - jra cerror + jra __cerror |