1 /*
2 Copyright (c) 1990 Regents of the University of California.
3 All rights reserved.
4  */
5 #include <stdlib.h>
6 #include <_ansi.h>
7 
8 float
atoff(const char * s)9 atoff (const char *s)
10 {
11   return strtof (s, NULL);
12 }
13