summaryrefslogtreecommitdiff
path: root/software/dhrystone/dhry_printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'software/dhrystone/dhry_printf.c')
-rw-r--r--software/dhrystone/dhry_printf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/software/dhrystone/dhry_printf.c b/software/dhrystone/dhry_printf.c
index 1fdaac4..025d231 100644
--- a/software/dhrystone/dhry_printf.c
+++ b/software/dhrystone/dhry_printf.c
@@ -246,7 +246,7 @@ static void vprintfmt(void (*putch)(int, void**), void **putdat, const char *fmt
}
}
-int printf(const char* fmt, ...)
+int __wrap_printf(const char* fmt, ...)
{
va_list ap;
va_start(ap, fmt);
@@ -257,7 +257,7 @@ int printf(const char* fmt, ...)
return 0; // incorrect return value, but who cares, anyway?
}
-int sprintf(char* str, const char* fmt, ...)
+int __wrap_sprintf(char* str, const char* fmt, ...)
{
va_list ap;
char* str0 = str;