1 #include <newlib.h> 2 3 #ifndef _FVWRITE_IN_STREAMIO 4 5 #include <stdio.h> 6 #include <wchar.h> 7 8 extern int __ssputs (FILE *fp, const char *buf, 9 size_t len); 10 11 int __ssputws(FILE * fp,const wchar_t * buf,size_t len)12__ssputws ( 13 FILE *fp, 14 const wchar_t *buf, 15 size_t len) 16 { 17 return __ssputs (fp, (const char *) buf, len * sizeof (wchar_t)); 18 } 19 20 #endif 21