X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=AppPkg%2FApplications%2FPython%2FPython-2.7.10%2FPython%2Fpyfpe.c;fp=AppPkg%2FApplications%2FPython%2FPython-2.7.10%2FPython%2Fpyfpe.c;h=0000000000000000000000000000000000000000;hp=46a61974f754d9fbe21a2bee80f02737c19c304c;hb=964f432b9b0afe103c41c7613fade3e699118afe;hpb=e2d3a25f1a3135221a9c8061e1b8f90245d727eb diff --git a/AppPkg/Applications/Python/Python-2.7.10/Python/pyfpe.c b/AppPkg/Applications/Python/Python-2.7.10/Python/pyfpe.c deleted file mode 100644 index 46a61974f7..0000000000 --- a/AppPkg/Applications/Python/Python-2.7.10/Python/pyfpe.c +++ /dev/null @@ -1,23 +0,0 @@ -#include "pyconfig.h" -#include "pyfpe.h" -/* - * The signal handler for SIGFPE is actually declared in an external - * module fpectl, or as preferred by the user. These variable - * definitions are required in order to compile Python without - * getting missing externals, but to actually handle SIGFPE requires - * defining a handler and enabling generation of SIGFPE. - */ - -#ifdef WANT_SIGFPE_HANDLER -jmp_buf PyFPE_jbuf; -int PyFPE_counter = 0; -#endif - -/* Have this outside the above #ifdef, since some picky ANSI compilers issue a - warning when compiling an empty file. */ - -double -PyFPE_dummy(void *dummy) -{ - return 1.0; -}