update for HEAD-2003091401
[reactos.git] / lib / crtdll / io / isatty.c
index a452414..a1d67b8 100644 (file)
@@ -1,11 +1,16 @@
-#include <crtdll/io.h>
-#include <crtdll/sys/stat.h>
+#include <msvcrt/io.h>
+#include <msvcrt/sys/stat.h>
 
+#define NDEBUG
+#include <msvcrt/msvcrtdbg.h>
 
+/*
+ * @implemented
+ */
 int _isatty( int fd )
 {
   struct stat buf;
-
+  DPRINT("_isatty(fd %d)\n", fd);
   if (_fstat (fd, &buf) < 0)
     return 0;
   if (S_ISCHR (buf.st_mode))