bugfix: 修复浮点数打印错误的bug

This commit is contained in:
fslongjin
2022-07-12 13:19:51 +08:00
parent 676260c537
commit 7670031b11
16 changed files with 235 additions and 35 deletions

View File

@ -1,5 +1,5 @@
#pragma once
#include "stddef.h"
double fabs(double x);
float fabsf(float x);
@ -7,4 +7,6 @@ long double fabsl(long double x);
double round(double x);
float roundf(float x);
long double roundl(long double x);
long double roundl(long double x);
int64_t pow(int64_t x, int y);