summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorhe <he@NetBSD.org>2009-03-17 19:41:32 +0000
committerhe <he@NetBSD.org>2009-03-17 19:41:32 +0000
commit6dc3c9a69e620bd2c86ace3ea48e1b7bbbec919c (patch)
treeffa3745adc26c142ba9e6fec00d09233c8e2bbe1 /sys
parent018696dd6699d8d24e6272fc9a3626c76be04f7a (diff)
Make putchar() conform to the stand.h prototype, so that this builds again.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/bebox/stand/boot/prf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/bebox/stand/boot/prf.c b/sys/arch/bebox/stand/boot/prf.c
index 2e5b5b3b4f2..e9e9adb998e 100644
--- a/sys/arch/bebox/stand/boot/prf.c
+++ b/sys/arch/bebox/stand/boot/prf.c
@@ -1,4 +1,4 @@
-/* $NetBSD: prf.c,v 1.7 2009/03/14 21:04:08 dsl Exp $ */
+/* $NetBSD: prf.c,v 1.8 2009/03/17 19:41:32 he Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -33,7 +33,7 @@
#include "boot.h"
void
-putchar(unsigned char c)
+putchar(int c)
{
cnputc(c);
}