elflink: remove core/printf.c
authorFeng Tang <feng.tang@intel.com>
Wed, 14 Jul 2010 08:44:02 +0000 (16:44 +0800)
committerFeng Tang <feng.tang@intel.com>
Tue, 20 Jul 2010 03:10:05 +0000 (11:10 +0800)
core/printf.c [deleted file]

diff --git a/core/printf.c b/core/printf.c
deleted file mode 100644 (file)
index 5cd3a14..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <stdio.h>
-#include <unistd.h>
-
-#include "core.h"
-
-/*
-int printf(const char *format, ...)
-{
-    char buf[1024];
-    va_list ap;
-    int rv;
-    
-    va_start(ap, format);
-    rv = vsnprintf(buf, sizeof buf, format, ap);
-    va_end(ap);
-    
-    myputs(buf);
-
-    return rv;
-
-}
-*/