tcc-65816/test/tests/tcc-pow.c
2017-06-09 13:52:12 +02:00

10 lines
126 B
C

#include <math.h>
int main()
{
float a = 2.0;
float b = 6.0;
if (fabs(pow(a,b) - 64.0) > .0002) abort();
return 0;
}