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