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