repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
libc
/
stdlib
/
dtoastub.c
blob
d1c8a6756c0339142718baea85ebd607ca4d85fc
1
#include <_ansi.h>
2
#include <stdlib.h>
3
#include <reent.h>
4
#include <string.h>
5
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
9
10
char
*
11
__dtoa
(
double
d
,
12
int
mode
,
13
int
ndigits
,
14
int
*
decpt
,
15
int
*
sign
,
16
char
**
rve
)
17
{
18
return
_dtoa_r
(
_REENT
,
d
,
mode
,
ndigits
,
decpt
,
sign
,
rve
);
19
}
20
21
#endif