Assorted whitespace cleanup and typo fixes.
[haiku.git] / src / system / libroot / posix / stdlib / atof.c
blobbae0918133b5e6b2cadde94a046f23de991d3b6a
1 /*
2 * Copyright 2002-2007, Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Author:
6 * Daniel Reinhold, danielre@users.sf.net
7 */
10 #include <stdlib.h>
13 double
14 atof(const char* num)
16 return strtod(num, NULL);