repo.or.cz
/
minish.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Make pipe wait for its children
[minish.git]
/
src
/
newline.c
blob
2aa74cd59ce40ada130d1cfabd0fb227c6bb6d50
1
#include <stdio.h>
2
#include <stdlib.h>
3
4
int
main
(
void
) {
5
if
(
putchar
(
'
\n
'
) ==
EOF
) {
6
return
EXIT_FAILURE
;
7
}
8
}