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