2007-10-03 Danny Smith <dannysmith@users.sourceforge.net>

* mingwex/gdtoa/mingw_snprintf.c: fixed warning during compile.
This commit is contained in:
Chris Sutcliffe 2007-10-03 20:45:58 +00:00
parent 08a0c88da5
commit b980db14b8
2 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2007-10-03 Danny Smith <dannysmith@users.sourceforge.net>
* mingwex/gdtoa/mingw_snprintf.c: fixed warning during compile.
2007-10-03 Bernd Becker <hugin@users.sourceforge.net>
* include/io.h (__finddata64_t, __wfinddata64_t): changed member 'size'

View File

@ -51,9 +51,7 @@ THIS SOFTWARE.
#include "stdlib.h"
#endif
#define VA_LIST va_list
/* #include "stdio1.h" */
#include <stdio.h>
#include "string.h"
#include "errno.h"
@ -104,8 +102,10 @@ THIS SOFTWARE.
# define Snprintf __mingw_snprintf
# define Vsnprintf __mingw_vsnprintf
int __cdecl snprintf()__attribute__((alias("__mingw_snprintf")));
int __cdecl vsnprintf()__attribute__((alias("__mingw_vsnprintf")));
int __cdecl __MINGW_NOTHROW
snprintf(char *, size_t, const char *, ...) __attribute__((alias("__mingw_snprintf")));
int __cdecl __MINGW_NOTHROW
vsnprintf (char *, size_t, const char *, __VALIST) __attribute__((alias("__mingw_vsnprintf")));
static char* __ldtoa (long double ld, int mode, int ndig, int *decpt,