From b8a51adb5736e9daf335fcf0015ce99d734bcdca Mon Sep 17 00:00:00 2001 From: Jeffrey Goode Date: Sat, 15 May 2010 03:47:06 +0000 Subject: vuprintf does not belong in stdio.h, causes problems with other versions of stdio.h git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26042 a1c6a512-1295-4272-9138-f99709370657 --- firmware/libc/include/stdio.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'firmware/libc') diff --git a/firmware/libc/include/stdio.h b/firmware/libc/include/stdio.h index d9a6dce..14f531f 100644 --- a/firmware/libc/include/stdio.h +++ b/firmware/libc/include/stdio.h @@ -40,11 +40,6 @@ int sprintf (char *buf, const char *fmt, ...) ATTRIBUTE_PRINTF(2, 3); int snprintf (char *buf, size_t size, const char *fmt, ...) ATTRIBUTE_PRINTF(3, 4); -/* callback function is called for every output character (byte) with userp and - * should return 0 when ch is a char other than '\0' that should stop printing */ -int vuprintf(int (*push)(void *userp, unsigned char data), - void *userp, const char *fmt, __VALIST ap); - int sscanf(const char *s, const char *fmt, ...) ATTRIBUTE_SCANF(2, 3); -- cgit v1.1