On Thu Feb 27 06:54:22 EST 2014, [email protected] wrote: > Porting stuff from the net (under ape) which wants to use IEEE floats. > i.e. ieee754_float32_t, powf(), fabsf() and log10f(). > > I could map these to plan9 floats and call the double version > of the transient functions, but is there a better solution?
plan 9 uses ieee floating point on machines that support it (all current arches) so ieee754_float32_t ≡ float. substituting the double version should work. did they abolish the rule that float is promoted to double on function call? or is this the equivalent of char fu(char) vs int fu(int). - erik
