DragonOS/user/libs/libc/math.h

12 lines
227 B
C
Raw Normal View History

2022-05-07 05:46:23 +00:00
#pragma once
#include "stddef.h"
2022-05-07 05:46:23 +00:00
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);
int64_t pow(int64_t x, int y);