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