update for HEAD-2003091401
[reactos.git] / lib / msvcrt / stdio / ungetc.c
index 2fd2aa6..cb5340b 100644 (file)
@@ -6,6 +6,9 @@
 #include <msvcrt/internal/file.h>
 
 
+/*
+ * @implemented
+ */
 int ungetc(int c, FILE *f)
 {
   if (!__validfp (f) || !OPEN4READING(f)) {
@@ -38,6 +41,9 @@ int ungetc(int c, FILE *f)
 }
 
 
+/*
+ * @implemented
+ */
 wint_t
 ungetwc(wchar_t c, FILE *f)
 {