Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / stdlib / dtoastub.c
blobd1c8a6756c0339142718baea85ebd607ca4d85fc
1 #include <_ansi.h>
2 #include <stdlib.h>
3 #include <reent.h>
4 #include <string.h>
6 /* Nothing in newlib actually *calls* dtoa, they all call _dtoa_r, so this
7 is a safe way of providing it to the user. */
8 #ifndef _REENT_ONLY
10 char *
11 __dtoa (double d,
12 int mode,
13 int ndigits,
14 int *decpt,
15 int *sign,
16 char **rve)
18 return _dtoa_r (_REENT, d, mode, ndigits, decpt, sign, rve);
21 #endif