mirror of
https://github.com/fluencelabs/musl
synced 2025-05-23 20:51:32 +00:00
8 lines
139 B
C
8 lines
139 B
C
#define _GNU_SOURCE
|
|
#include <stdio.h>
|
|
|
|
void setbuffer(FILE *f, char *buf, size_t size)
|
|
{
|
|
setvbuf(f, buf, buf ? _IOFBF : _IONBF, size);
|
|
}
|