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: c97b78fb1f780009533ffc42ae8a4a2c44b9c6d7 (plain)
1
2
3
4
5
6
7
8
9
#include <stdlib.h>
#include <_ansi.h>

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