xref: /haiku/src/system/libroot/posix/stdlib/atof.c (revision 2b76973fa2401f7a5edf68e6470f3d3210cbcff3)
1 /*
2  * Copyright 2002-2007, Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Author:
6  * 		Daniel Reinhold, danielre@users.sf.net
7  */
8 
9 
10 #include <stdlib.h>
11 
12 
13 double
14 atof(const char* num)
15 {
16 	return strtod(num, NULL);
17 }
18