forked from KolibriOS/kolibrios
e7ec006b8b
- Added atof function - Added example for working with threads git-svn-id: svn://kolibrios.org@9137 a494cfbc-eb01-0410-851d-a64ba20cac60
9 lines
147 B
C
9 lines
147 B
C
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
|
#include <stdlib.h>
|
|
|
|
double
|
|
atof(const char *ascii)
|
|
{
|
|
return strtod(ascii, 0);
|
|
}
|