mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 15:26:47 +00:00
10 lines
176 B
C
10 lines
176 B
C
#pragma once
|
|
|
|
|
|
double fabs(double x);
|
|
float fabsf(float x);
|
|
long double fabsl(long double x);
|
|
|
|
double round(double x);
|
|
float roundf(float x);
|
|
long double roundl(long double x); |