summaryrefslogtreecommitdiff
path: root/src/stdlib/atof.c
blob: 1cb52620e2bd950bf2559ff66952d8c1d7acb4d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#if 0

#include <stdlib.h>

/** convert string to floating-point **/

double atof(const char * nptr)
{
	return strtod(nptr, (char**)NULL);
}

/***
converts the string at ARGUMENT(nptr) to a TYPE(double). The
conversion goes until the first inappropriate character.
***/

/*
LC_CTYPE
RETURN_SUCCESS(the converted value)
STDC(1)
*/


#endif