ack/lang/cem/libcc/gen/atof.c

13 lines
134 B
C
Raw Normal View History

1987-03-31 10:45:53 +00:00
/* $Header$ */
1987-01-27 15:57:55 +00:00
#ifndef NOFLOAT
1988-08-11 12:49:06 +00:00
extern double strtod();
1987-01-27 15:57:55 +00:00
double
atof(p)
register char *p;
{
1988-08-11 12:49:06 +00:00
return strtod(p, (char **) 0);
1987-01-27 15:57:55 +00:00
}
#endif