update for HEAD-2003091401
[reactos.git] / lib / crtdll / stdio / fputc.c
index c63635a..f4cd15e 100644 (file)
@@ -1,17 +1,23 @@
 /* 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>
 
+/*
+ * @implemented
+ */
 int
 fputc(int c, FILE *fp)
 {
   return putc(c, fp);
 }
 
+/*
+ * @implemented
+ */
 wint_t 
 fputwc(wchar_t c, FILE *fp)
 {      
-       return fputwc(c,fp);
+  return putwc(c,fp);
 }