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
/
puts.c
blob
ecebf275da718d1dc55be826add92596122860f8
1
/*
2
* puts.c
3
*/
4
5
#include <stdio.h>
6
7
int
puts
(
const char
*
s
)
8
{
9
if
(
fputs
(
s
,
stdout
) <
0
)
10
return
-
1
;
11
12
return
_fwrite
(
"
\n
"
,
1
,
stdout
);
13
}