1988-04-28 15:16:07 +00:00
|
|
|
/* unfortunately, we cannot just do an atof and convert result to float
|
1989-07-31 14:54:53 +00:00
|
|
|
if neccessary, because that might result in over/underflow at an
|
1988-04-28 15:16:07 +00:00
|
|
|
unexpected moment. For the time being, overflow in floating point
|
|
|
|
constants goes undetected
|
|
|
|
*/
|
1989-07-31 14:54:53 +00:00
|
|
|
|
|
|
|
#include <con_float>
|
|
|
|
|
|
|
|
con_float(str, argval, res)
|
1988-04-28 15:16:07 +00:00
|
|
|
char *str, *res;
|
|
|
|
{
|
1989-07-31 14:54:53 +00:00
|
|
|
float_cst(str, argval, res);
|
1988-04-28 15:16:07 +00:00
|
|
|
}
|