Fixed compiler warning

svn path=/trunk/; revision=1069
This commit is contained in:
Eric Kohl 2000-03-17 21:46:41 +00:00
parent 690a781452
commit d9d3272dc6
2 changed files with 2 additions and 1 deletions

View file

@ -41,7 +41,7 @@ fwprintf(register FILE *iop, const wchar_t *fmt, ...)
if (iop->_flag & _IONBF)
{
iop->_flag &= ~_IONBF;
iop->_ptr = iop->_base = localbuf;
iop->_ptr = iop->_base = (char *)localbuf;
iop->_bufsiz = BUFSIZ;
len = vfwprintf(iop,fmt,a);
fflush(iop);

View file

@ -3,6 +3,7 @@
#include <crtdll/stdio.h>
#include <crtdll/string.h>
#include <crtdll/float.h>
#include <crtdll/alloc.h>
// #include <crtdll/locale.h>
void __ecvround (char *, char *, const char *, int *);