update for HEAD-2003021201
[reactos.git] / lib / crtdll / stdio / setlineb.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/stdio.h>
3
4 // not exported
5
6 void setlinebuf(FILE *f)
7 {
8   setvbuf(f, 0, _IOLBF, BUFSIZ);
9 }