aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdlib/atoff.c
blob: e25ff2917f4b3b8c7dd77afcc0be69bef8ea44f7 (plain)
1
2
3
4
5
6
7
8
#include <stdlib.h>
#include <_ansi.h>

float
atoff (const char *s)
{
  return strtof (s, NULL);
}