Retro68/gcc/newlib/libc/stdlib/atoff.c

10 lines
114 B
C
Raw Normal View History

#include <stdlib.h>
#include <_ansi.h>
float
_DEFUN (atoff, (s),
_CONST char *s)
{
return strtof (s, NULL);
}