diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2006-11-08 02:16:37 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:26:51 +0200 |
commit | 0b668f95ad59420f80e237f97747649c7b86d123 (patch) | |
tree | 46ff874916a20b1d7bc5f9c04f9ee9e155ec6fc2 | |
parent | 2a6fbda081b27496749c9983839e534930334a04 (diff) |
2006-11-08 Samuel Thibault <samuel.thibault@ens-lyon.org>
[task #5726 --- ``GCC built-in functions'']
* include/printf.h (iprintf): Fix prototype.
(vprintf): Add prototype.
* kern/printf.c: Include `printf.h'.
(vprintf, printf): Fix prototype and return a dumb value.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | include/printf.h | 4 | ||||
-rw-r--r-- | kern/printf.c | 7 |
3 files changed, 16 insertions, 3 deletions
@@ -1,3 +1,11 @@ +2006-11-08 Samuel Thibault <samuel.thibault@ens-lyon.org> + + [task #5726 --- ``GCC built-in functions''] + * include/printf.h (iprintf): Fix prototype. + (vprintf): Add prototype. + * kern/printf.c: Include `printf.h'. + (vprintf, printf): Fix prototype and return a dumb value. + 2006-11-07 Barry deFreese <bddebian@comcast.net> [task #5726 --- ``GCC built-in functions''] diff --git a/include/printf.h b/include/printf.h index e309d21..f5930dc 100644 --- a/include/printf.h +++ b/include/printf.h @@ -44,7 +44,9 @@ extern int sprintf (char *buf, const char *fmt, ...); extern int printf (const char *fmt, ...); extern int indent; -extern int iprintf (const char *fmt, ...); +extern void iprintf (const char *fmt, ...); + +extern int vprintf(const char *fmt, va_list listp); #endif /* _MACH_SA_SYS_PRINTF_H_ */ diff --git a/kern/printf.c b/kern/printf.c index a1f18b0..37543b3 100644 --- a/kern/printf.c +++ b/kern/printf.c @@ -114,6 +114,7 @@ */ #include <string.h> +#include <printf.h> #include <mach/boolean.h> #include <kern/lock.h> #include <stdarg.h> @@ -511,18 +512,20 @@ void _doprnt( */ extern void cnputc( char, /*not really*/vm_offset_t); -void vprintf(const char *fmt, va_list listp) +int vprintf(const char *fmt, va_list listp) { _doprnt(fmt, &listp, cnputc, 16, 0); + return 0; } /*VARARGS1*/ -void printf(const char *fmt, ...) +int printf(const char *fmt, ...) { va_list listp; va_start(listp, fmt); vprintf(fmt, listp); va_end(listp); + return 0; } int indent = 0; |