update for HEAD-2003021201
[reactos.git] / lib / crtdll / stdio / fputc.c
index c63635a..c05abe9 100644 (file)
@@ -1,7 +1,7 @@
 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <crtdll/stdio.h>
-#include <crtdll/wchar.h>
-#include <crtdll/internal/file.h>
+#include <msvcrt/stdio.h>
+#include <msvcrt/wchar.h>
+#include <msvcrt/internal/file.h>
 
 int
 fputc(int c, FILE *fp)
@@ -12,6 +12,6 @@ fputc(int c, FILE *fp)
 wint_t 
 fputwc(wchar_t c, FILE *fp)
 {      
-       return fputwc(c,fp);
+  return putwc(c,fp);
 }