> For now, could you please confirm that the line 106 in vsnprintf.cxx > indeed reads: > > return vfnprintf( (FILE *)&stream, size, format, arg ); > > in your sources after my patch is applied?
100 }
101
102 externC int
103 vsnprintf( char *s, size_t size, const char *format, va_list arg )
__THROW
104 {
105 Cyg_VsnprintfStream stream(s);
106 return vfnprintf( (FILE *)&stream, size, format, arg );
107 } // vsnprintf()
108
109 // EOF vsnprintf.cxx
Andrew
