[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / lib / sdk / crt / conio / putch.c
diff --git a/reactos/lib/sdk/crt/conio/putch.c b/reactos/lib/sdk/crt/conio/putch.c
deleted file mode 100644 (file)
index 5a93566..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * COPYRIGHT:   See COPYING in the top level directory
- * PROJECT:     ReactOS system libraries
- * FILE:        lib/sdk/crt/conio/putch.c
- * PURPOSE:     Writes a character to stdout
- * PROGRAMER:   Ariadne
- * UPDATE HISTORY:
- *              28/12/98: Created
- */
-
-#include <precomp.h>
-
-/*
- * @implemented
- */
-int _putch(int c)
-{
-  DWORD NumberOfCharsWritten;
-
-  if (WriteFile(GetStdHandle(STD_OUTPUT_HANDLE),&c,1,&NumberOfCharsWritten,NULL)) {
-    return -1;
-  }
-  return NumberOfCharsWritten;
-}