Retro68/gcc/newlib/libc/stdlib/atoff.c
Wolfgang Thaller ec13cc9ce7 fix newlib
2018-12-29 09:59:36 +01:00

9 lines
99 B
C

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