Files
Upsilon/liba/src/powf.c
Romain Goyet fd0c6eaba3 Add a (fake) implementation of powf in liba
Change-Id: I14af6937fecfbe90ab053594e1269fcbc3681b1c
2016-03-18 16:52:02 +01:00

4 lines
74 B
C

float powf(float x, float y) {
return 1.0f; // TODO: do this for real
}