git-subtree-dir: lib/runtime git-subtree-mainline: 566a2341f5b726d86f5d42a72beb9c70b83f31b6 git-subtree-split: db5cddbec10c4b7c086eda716d48d4711632901f
13 lines
157 B
C
13 lines
157 B
C
#include <stdint.h>
|
|
|
|
#include "private.h"
|
|
|
|
float
|
|
fabsf(float x)
|
|
{
|
|
uint32_t ix;
|
|
GET_FLOAT_WORD(ix,x);
|
|
SET_FLOAT_WORD(x,ix&0x7fffffff);
|
|
return x;
|
|
}
|