xref: /netbsd-src/sys/arch/evbarm/stand/board/nullcom.c (revision b1c86f5f087524e68db12794ee9c3e3da1ab17a0)
1 /*	$NetBSD: nullcom.c,v 1.2 2009/01/12 07:45:24 tsutsui Exp $	*/
2 
3 /*
4  * nulldev-like console stubs for quiet gzboot
5  */
6 #include <lib/libsa/stand.h>
7 #include "board.h"
8 
9 void
10 cons_init(void)
11 {
12 }
13 
14 int
15 getchar(void)
16 {
17 	return 0;	/* XXX */
18 }
19 
20 void
21 putchar(int c)
22 {
23 }
24