1 #include "nldbl-compat.h" 2 3 int 4 attribute_hidden 5 weak_function fwprintf(FILE * stream,const wchar_t * fmt,...)6fwprintf (FILE *stream, const wchar_t *fmt, ...) 7 { 8 va_list arg; 9 int done; 10 11 va_start (arg, fmt); 12 done = __nldbl_vfwprintf (stream, fmt, arg); 13 va_end (arg); 14 15 return done; 16 } 17