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
/
setbuf.c
blob
42fe3a2664d782632c95b2197f5c58cc095d9469
1
/*
2
* setbuf.c - control buffering of a stream
3
*/
4
/* $Header$ */
5
6
#include <stdio.h>
7
#include
"loc_incl.h"
8
9
void
10
setbuf
(
register
FILE
*
stream
,
char
*
buf
)
11
{
12
(
void
)
setvbuf
(
stream
,
buf
, (
buf
?
_IOFBF
:
_IONBF
), (
size_t
)
BUFSIZ
);
13
}