/* Copyright (C) 2002 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1998 DJ Delorie, see COPYING.DJ for details */ #include #include #include char * fcvt (double value, int ndigits, int *decpt, int *sign) { static char fcvt_buf[2 * DBL_MAX_10_EXP + 10]; return fcvtbuf (value, ndigits, decpt, sign, fcvt_buf); }