kolibrios/programs/develop/ktcc/trunk/libc.obj/source/stdlib/atof.c

9 lines
147 B
C
Raw Normal View History

/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#include <stdlib.h>
double
atof(const char *ascii)
{
return strtod(ascii, 0);
}