kolibrios/programs/develop/ktcc/trunk/libc.obj/source/stdio/setvbuf.c

6 lines
118 B
C
Raw Normal View History

#include <stdio.h>
int setvbuf(FILE *restrict stream, char *restrict buf, int mode, size_t size) {
return 0;
}