]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.10/Python/pyfpe.c
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.10 / Python / pyfpe.c
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 (file)
index 46a6197..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#include "pyconfig.h"\r
-#include "pyfpe.h"\r
-/* \r
- * The signal handler for SIGFPE is actually declared in an external\r
- * module fpectl, or as preferred by the user.  These variable\r
- * definitions are required in order to compile Python without\r
- * getting missing externals, but to actually handle SIGFPE requires\r
- * defining a handler and enabling generation of SIGFPE.\r
- */\r
-\r
-#ifdef WANT_SIGFPE_HANDLER\r
-jmp_buf PyFPE_jbuf;\r
-int PyFPE_counter = 0;\r
-#endif\r
-\r
-/* Have this outside the above #ifdef, since some picky ANSI compilers issue a \r
-   warning when compiling an empty file. */\r
-\r
-double\r
-PyFPE_dummy(void *dummy)\r
-{\r
-       return 1.0;\r
-}\r