update for HEAD-2003091401
[reactos.git] / lib / msvcrt / stdio / freopen.c
index f6f14fd..06f003f 100644 (file)
@@ -7,6 +7,9 @@
 #include <msvcrt/internal/file.h>
 
 
+/*
+ * @implemented
+ */
 FILE *freopen(const char *file, const char *mode, FILE *f)
 {
   int fd, rw, oflags=0;
@@ -64,6 +67,9 @@ FILE *freopen(const char *file, const char *mode, FILE *f)
   return f;
 }
 
+/*
+ * @implemented
+ */
 FILE *_wfreopen(const wchar_t *file, const wchar_t *mode, FILE *f)
 {
   int fd, rw, oflags=0;