summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/console/vsprintf.c14
-rw-r--r--src/include/string.h1
2 files changed, 0 insertions, 15 deletions
diff --git a/src/console/vsprintf.c b/src/console/vsprintf.c
index b1b6d475be..1fb834f382 100644
--- a/src/console/vsprintf.c
+++ b/src/console/vsprintf.c
@@ -57,20 +57,6 @@ static int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
return i;
}
-int sprintf(char *buf, const char *fmt, ...)
-{
- va_list args;
- int i;
-
- va_start(args, fmt);
- /* A trick: we have at most (size_t)-1 adressable space anyway, so
- if we output so much we'll crash anyway. */
- i = vsnprintf(buf, -1, fmt, args);
- va_end(args);
-
- return i;
-}
-
int snprintf(char *buf, size_t size, const char *fmt, ...)
{
va_list args;
diff --git a/src/include/string.h b/src/include/string.h
index dc125e19b0..b4d0268419 100644
--- a/src/include/string.h
+++ b/src/include/string.h
@@ -16,7 +16,6 @@ void *memset(void *s, int c, size_t n);
int memcmp(const void *s1, const void *s2, size_t n);
void *memchr(const void *s, int c, size_t n);
#if !defined(__PRE_RAM__)
-int sprintf(char * buf, const char *fmt, ...);
int snprintf(char * buf, size_t size, const char *fmt, ...);
#endif