?? crt0fp.c
字號:
/***
*crt0fp.asm - floating point not loaded trap
*
* Copyright (c) 1989-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* To trap certain cases where certain necessary floating-point
* software is not loaded. Two specific cases are when no emulator
* is linked in but no coprocessor is present, and when floating
* point i/o conversions are done, but no floating-point variables
* or expressions are used in the program.
*
*******************************************************************************/
#include <cruntime.h>
#include <internal.h>
#include <rterr.h>
/***
*_fptrap - trap for missing floating-point software
*
*Purpose:
* Catches these cases of incomplete f.p. software linked into a program.
*
* (1) no coprocessor present, and no emulator linked in
*
* (2) "%e", "%f", and "%g" i/o conversion formats specified, but
* not all conversion software has been linked in, because the
* program did not use any floating-point variables or expressions.
*
*Entry:
* None.
*
*Exit:
* Never returns.
*
*Exceptions:
* Transfers control to _amsg_exit which ...
* - Writes error message to standard error: "floating point not loaded"
* - Terminates the program by calling _exit().
*******************************************************************************/
void __cdecl _fptrap(
void
)
{
_amsg_exit(_RT_FLOAT);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -