update for HEAD-2003091401
[reactos.git] / lib / msvcrt / io / setmode.c
index ca26cec..a64c939 100644 (file)
@@ -2,7 +2,7 @@
  *
  * COPYRIGHT:   See COPYING in the top level directory
  * PROJECT:     ReactOS system libraries
- * FILE:        lib/crtdll/io/setmode.c
+ * FILE:        lib/msvcrt/io/setmode.c
  * PURPOSE:     Sets the file translation mode
  * PROGRAMER:   Boudewijn Dekker
  * UPDATE HISTORY:
 #include <msvcrt/msvcrtdbg.h>
 
 
+/*
+ * @implemented
+ */
 int _setmode(int _fd, int _newmode)
 {
-  DPRINT("_setmod(fd %d, newmode %x)\n", _fd, _newmode);
-  return __fileno_setmode(_fd, _newmode);
+    DPRINT("_setmod(fd %d, newmode %x)\n", _fd, _newmode);
+    return __fileno_setmode(_fd, _newmode);
 }