Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / arch / evbarm / stand / board / nullcom.c
blob67d8f5724b8b09a58ec01c13ba258d2f9248dd96
1 /* $NetBSD: nullcom.c,v 1.1 2008/11/10 20:30:12 cliff Exp $ */
3 /*
4 * nulldev-like console stubs for quiet gzboot
5 */
6 #include <lib/libsa/stand.h>
7 #include "board.h"
9 void
10 cons_init(void)
14 int
15 getchar(void)
17 return 0; /* XXX */
20 void
21 putchar(int c)