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