diff options
Diffstat (limited to 'firmware/libc')
| -rw-r--r-- | firmware/libc/include/stdio.h | 5 |
1 files changed, 0 insertions, 5 deletions
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); |