atanf
float atanf(float);
PROTO_NORMAL(atanf);
if(hx==0x3f800000) return atanf(y); /* x=1.0 */
else z=atanf(fabsf(y/x)); /* safe to do y/x */
DEF_STD(atanf);
return (tanl(atanf(x)));