libc/newlib/libc/stdlib/atoff.c
Yaakov Selkowitz 9087163804 ansification: remove _DEFUN
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
2018-01-17 11:47:26 -06:00

9 lines
99 B
C

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