update for HEAD-2003021201
[reactos.git] / lib / crtdll / stdio / setbuf.c
index f8a6e1d..a112ae3 100644 (file)
@@ -1,10 +1,9 @@
 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <crtdll/stdio.h>
-#include <crtdll/stdlib.h>
-#include <crtdll/internal/file.h>
+#include <msvcrt/stdio.h>
+#include <msvcrt/stdlib.h>
+#include <msvcrt/internal/file.h>
 
-void
-setbuf(FILE *f, char *buf)
+void setbuf(FILE *f, char *buf)
 {
   if (buf)
     setvbuf(f, buf, _IOFBF, BUFSIZ);