repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Uninitialized vector entry?
[minix3.git]
/
lib
/
stdio
/
fputc.c
blob
ec759144c1e94b20d8e04e3475bffcfc9ad2fee7
1
/*
2
* fputc.c - print an unsigned character
3
*/
4
/* $Header$ */
5
6
#include <stdio.h>
7
8
int
9
fputc
(
int
c
,
FILE
*
stream
)
10
{
11
return
putc
(
c
,
stream
);
12
}