13 lines
134 B
C
13 lines
134 B
C
/* $Header$ */
|
|
#ifndef NOFLOAT
|
|
|
|
extern double strtod();
|
|
|
|
double
|
|
atof(p)
|
|
register char *p;
|
|
{
|
|
return strtod(p, (char **) 0);
|
|
}
|
|
#endif
|