prime/src/Runtime/math_ppc.c

4 lines
73 B
C

#include <math.h>
float cosf(float x) { return (float)cos((double)x); }