Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/acorn32/stand/lib Rename os_CLI() and xos_CLI() to ...



details:   https://anonhg.NetBSD.org/src/rev/d18c036891ca
branches:  trunk
changeset: 555616:d18c036891ca
user:      bjh21 <bjh21%NetBSD.org@localhost>
date:      Sun Nov 23 15:24:20 2003 +0000

description:
Rename os_CLI() and xos_CLI() to os_cli() and xos_cli() for consistency with
everything else.

diffstat:

 sys/arch/acorn32/stand/lib/riscoscalls.S |  6 +++---
 sys/arch/acorn32/stand/lib/riscoscalls.h |  6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (46 lines):

diff -r 158cc241e9c4 -r d18c036891ca sys/arch/acorn32/stand/lib/riscoscalls.S
--- a/sys/arch/acorn32/stand/lib/riscoscalls.S  Sun Nov 23 14:13:42 2003 +0000
+++ b/sys/arch/acorn32/stand/lib/riscoscalls.S  Sun Nov 23 15:24:20 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: riscoscalls.S,v 1.2 2003/11/19 00:11:55 gavan Exp $    */
+/*     $NetBSD: riscoscalls.S,v 1.3 2003/11/23 15:24:20 bjh21 Exp $    */
 
 /*-
  * Copyright (c) 2001 Ben Harris
@@ -52,14 +52,14 @@
        swi     OS_ReadC
        ldmdb   fp, {fp, sp, pc}
 
-ENTRY(os_CLI)
+ENTRY(os_cli)
        mov     ip, sp
        stmfd   sp!, {fp, ip, lr, pc}
        sub     fp, ip, #4
        swi     OS_CLI
        ldmdb   fp, {fp, sp, pc}
 
-ENTRY(xos_CLI)
+ENTRY(xos_cli)
        mov     ip, sp
        stmfd   sp!, {fp, ip, lr, pc}
        sub     fp, ip, #4
diff -r 158cc241e9c4 -r d18c036891ca sys/arch/acorn32/stand/lib/riscoscalls.h
--- a/sys/arch/acorn32/stand/lib/riscoscalls.h  Sun Nov 23 14:13:42 2003 +0000
+++ b/sys/arch/acorn32/stand/lib/riscoscalls.h  Sun Nov 23 15:24:20 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: riscoscalls.h,v 1.1 2002/12/28 23:57:38 reinoud Exp $  */
+/*     $NetBSD: riscoscalls.h,v 1.2 2003/11/23 15:24:20 bjh21 Exp $    */
 
 /*-
  * Copyright (c) 2001 Ben Harris
@@ -98,8 +98,8 @@
 /* OS_CLI */
 
 #ifndef __ASSEMBLER__
-extern void os_CLI(char *);
-extern os_error *xos_CLI(char *);
+extern void os_cli(char *);
+extern os_error *xos_cli(char *);
 #endif
 
 /* OS_Byte */



Home | Main Index | Thread Index | Old Index