1b3e94a20d
From release 0.1.0 pre-patched archive. This includes all Red Bear modifications previously maintained as patches in local/patches/relibc/.
13 lines
171 B
C
13 lines
171 B
C
#include <stdio.h>
|
|
#include <math.h>
|
|
#include <assert.h>
|
|
|
|
int
|
|
main()
|
|
{
|
|
float x = 0xd.65874p-4f;
|
|
float y = 4.0f;
|
|
float z = powf (x, y);
|
|
assert(z==0x1.f74424p-2);
|
|
}
|