Use free Windows DDK and compile with latest MinGW releases.
[reactos.git] / reactos / lib / msvcrt / stdlib / fcvt.c
1 /* Copyright (C) 1998 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrti.h>
3
4
5 char *fcvtbuf (double, int, int *, int *, char *);
6
7 char *
8 _fcvt (double value, int ndigits, int *decpt, int *sign)
9 {
10 static char fcvt_buf[2 * DBL_MAX_10_EXP + 10];
11 return fcvtbuf (value, ndigits, decpt, sign, fcvt_buf);
12 }