mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-18 08:06:32 +00:00
bugfix: 修复浮点数打印错误的bug
This commit is contained in:
@ -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);
|
Reference in New Issue
Block a user