mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 20:32:35 +03:00
2336060a0c
git-svn-id: svn://kolibrios.org@1906 a494cfbc-eb01-0410-851d-a64ba20cac60
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;
|
|
}
|