This is the mail archive of the ecos-patches@sourceware.org mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Speed-up sprintf() family of functions.


> 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]