mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 06:10:30 -04:00
23 lines
397 B
C
23 lines
397 B
C
--- app/main.c.orig 2014-08-24 15:44:07 UTC
|
|
+++ app/main.c
|
|
@@ -17,12 +17,20 @@
|
|
*/
|
|
#include <config.h>
|
|
|
|
+#if defined(FP_X_INV) && defined(FP_X_DZ)
|
|
+#include <ieeefp.h>
|
|
+#endif
|
|
+
|
|
#include "app_procs.h"
|
|
|
|
#include "interface.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
+#if defined(FP_X_INV) && defined(FP_X_DZ)
|
|
+ fpsetmask(0);
|
|
+#endif
|
|
+
|
|
app_init(argc, argv);
|
|
|
|
if (!app_is_interactive())
|