Welcome to mirror list, hosted at ThFree Co, Russian Federation.

atoff.c « stdlib « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c682c47a28d284d096c255cff10666ab65de154 (plain)
1
2
3
4
5
6
7
8
9
#include <stdlib.h>
#include <_ansi.h>

float
_DEFUN (atoff, (s),
	_CONST char *s)
{
  return strtodf (s, NULL);
}