fp10.c
来自「C语言库函数的原型,有用的拿去」· C语言 代码 · 共 26 行
C
26 行
/***
* fp10.c - Set default FP precision to 64 bits (10-byte 'long double')
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
*
*******************************************************************************/
#include <float.h>
#include <internal.h>
void _setdefaultprecision(void);
/*
* Routine to set default FP precision to 64 bits, used to override
* standard 53-bit precision version in fpinit.c.
*/
void _setdefaultprecision()
{
#ifndef _M_AMD64
_ERRCHECK(_controlfp_s(NULL, _PC_64, _MCW_PC));
#endif /* _M_AMD64 */
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?