repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 3.50~pre5.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
fputc.c
blob
61aff1644bf28035565fbeacb7f21eb698196aae
1
/*
2
* fputc.c
3
*
4
* gcc "printf decompilation" expects this to exist...
5
*/
6
7
#include <stdio.h>
8
9
int
fputc
(
int
c
,
FILE
*
f
)
10
{
11
unsigned char
ch
=
c
;
12
13
return
_fwrite
(&
ch
,
1
,
f
) ==
1
?
ch
:
EOF
;
14
}