1
0
mirror of https://github.com/php/php-src.git synced 2026-04-11 01:53:36 +02:00

- Solve floating point precision crash on FreeBSD.

This commit is contained in:
Andi Gutmans
2000-06-11 18:07:14 +00:00
parent 5928970d22
commit 1f5ee72e2d

View File

@@ -304,7 +304,7 @@ static void alloc_globals_ctor(zend_alloc_globals *alloc_globals)
#endif
#if 0
#ifdef __FreeBSD__
/* FreeBSD floating point precision fix */
#include <floatingpoint.h>
#endif
@@ -320,7 +320,7 @@ int zend_startup(zend_utility_functions *utility_functions, char **extensions, i
start_memory_manager(ALS_C);
#endif
#if 0
#ifdef __FreeBSD__
/* FreeBSD floating point precision fix */
fpsetmask(FP_X_IMP);
#endif