summaryrefslogtreecommitdiff
path: root/software/dhrystone/dhry_printf.c
diff options
context:
space:
mode:
authorAlbert Ou <albert@sifive.com>2016-12-13 15:05:19 -0800
committerAlbert Ou <albert@sifive.com>2016-12-14 12:23:40 -0800
commit3dbaad0a1f27b96462541e1189efe37ffa913e9a (patch)
treef50f770a39bc5d9fd9296862b4806c5dd7d0eed6 /software/dhrystone/dhry_printf.c
parent82d5cab92318ca82f6fb95921cd70e4aefa28cd9 (diff)
Refactor libc stubs into libwrap
The --wrap feature of GNU ld supports a cleaner framework for linking in alternative implementations of libc functions without cpp hacks. Place wrappers in separate object files to reduce static code size.
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;