[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / lib / sdk / crt / printf / _cprintf.c
diff --git a/reactos/lib/sdk/crt/printf/_cprintf.c b/reactos/lib/sdk/crt/printf/_cprintf.c
deleted file mode 100644 (file)
index ee8f706..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * COPYRIGHT:       GNU GPL, see COPYING in the top level directory
- * PROJECT:         ReactOS crt library
- * FILE:            lib/sdk/crt/printf/_cprintf.c
- * PURPOSE:         Implementation of _cprintf
- * PROGRAMMER:      Timo Kreuzer
- */
-
-#include <conio.h>
-#include <stdarg.h>
-
-int
-__cdecl
-_cprintf(const char * format, ...)
-{
-    va_list argptr;
-    int result;
-
-    va_start(argptr, format);
-    result = _vcprintf(format, argptr);
-    va_end(argptr);
-    return result;
-}