Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
stdio
setlinebuf.c
pretty
plain
permalink
blame
history
•
7 lines
•
96 B
1
#define _GNU_SOURCE
2
#include <stdio.h>
3
4
void setlinebuf(FILE *f)
5
{
6
	setvbuf(f, 0, _IOLBF, 0);
7
}