Module Name: src
Committed By: joerg
Date: Mon Oct 28 18:13:40 UTC 2019
Modified Files:
src/sys/arch/macppc/stand/bootxx: bootxx.c
Log Message:
Mark local-only function as static to save space.
To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/macppc/stand/bootxx/bootxx.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/macppc/stand/bootxx/bootxx.c
diff -u src/sys/arch/macppc/stand/bootxx/bootxx.c:1.19 src/sys/arch/macppc/stand/bootxx/bootxx.c:1.20
--- src/sys/arch/macppc/stand/bootxx/bootxx.c:1.19 Mon Nov 12 20:00:46 2018
+++ src/sys/arch/macppc/stand/bootxx/bootxx.c Mon Oct 28 18:13:40 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: bootxx.c,v 1.19 2018/11/12 20:00:46 scole Exp $ */
+/* $NetBSD: bootxx.c,v 1.20 2019/10/28 18:13:40 joerg Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -299,7 +299,7 @@ OF_write(int handle, const void *addr, i
int stdout;
-void
+static void
putstrn(const char *s, size_t n)
{
OF_write(stdout, s, n);