Make putchar() obey the stand.h prototype.

This commit is contained in:
he 2009-03-17 00:13:43 +00:00
parent 9fb657a571
commit 715f7f5caa
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: console.c,v 1.9 2009/03/14 21:04:04 dsl Exp $ */
/* $NetBSD: console.c,v 1.10 2009/03/17 00:13:43 he Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@ -175,7 +175,7 @@ consclose()
#endif
void
putchar(char c)
putchar(int c)
{
struct Console *mc = ConsoleBase;