mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-24 23:56:49 +03:00
10 lines
121 B
C
10 lines
121 B
C
|
#include <math.h>
|
||
|
|
||
|
float
|
||
|
fabsf (float x)
|
||
|
{
|
||
|
float res;
|
||
|
asm ("fabs;" : "=t" (res) : "0" (x));
|
||
|
return res;
|
||
|
}
|