Pristine Ack-5.5
[Ack-5.5.git] / mach / mantra / int / con_float.c
1 /* unfortunately, we cannot just do an atof and convert result to float
2    if neccessary, because that might result in over/underflow at an
3    unexpected moment. For the time being, overflow in floating point
4    constants goes undetected
5 */
6
7 #include <con_float>
8
9 con_float(str, argval, res)
10         char *str, *res;
11 {
12         float_cst(str, argval, res);
13 }