repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Expand PMF_FN_* macros.
[netbsd-mini2440.git]
/
sys
/
arch
/
evbarm
/
stand
/
board
/
nullcom.c
blob
67d8f5724b8b09a58ec01c13ba258d2f9248dd96
1
/* $NetBSD: nullcom.c,v 1.1 2008/11/10 20:30:12 cliff 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
}