Index: kernel/generic/include/printf/printf_core.h
===================================================================
--- kernel/generic/include/printf/printf_core.h	(revision c583970b702217433d88305959ef876e3c1707d0)
+++ kernel/generic/include/printf/printf_core.h	(revision b60c582d0cf4f0476a720c8e05bd742fbffc87ce)
@@ -41,9 +41,9 @@
 /** Structure for specifying output methods for different printf clones. */
 typedef struct {
-	/* UTF-8 output function, returns number of printed UTF-8 characters or EOF */
-	int (*write_utf8)(const char *, size_t, void *);
+	/* String output function, returns number of printed characters or EOF */
+	int (*str_write)(const char *, size_t, void *);
 	
-	/* UTF-32 output function, returns number of printed UTF-32 characters or EOF */
-	int (*write_utf32)(const wchar_t *, size_t, void *);
+	/* Wide string output function, returns number of printed characters or EOF */
+	int (*wstr_write)(const wchar_t *, size_t, void *);
 	
 	/* User data - output stream specification, state, locks, etc. */
