ack/mach/mantra/int/con_float.c

14 lines
344 B
C
Raw Normal View History

1988-04-28 15:16:07 +00:00
/* unfortunately, we cannot just do an atof and convert result to float
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
*/
#include <con_float>
con_float(str, argval, res)
1988-04-28 15:16:07 +00:00
char *str, *res;
{
float_cst(str, argval, res);
1988-04-28 15:16:07 +00:00
}