mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
7de835b2f9
PR: 11362 Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
23 lines
544 B
Plaintext
23 lines
544 B
Plaintext
--- bb/main.C Thu Oct 9 16:03:25 1997
|
|
+++ /home/andy/tmp/wrk/bb/main.C Wed Dec 16 23:34:59 1998
|
|
@@ -16,6 +16,9 @@
|
|
#include <stdio.h> // to get sprintf()
|
|
#include <string.h> // to get strncpy()
|
|
#include <time.h> // to get time(time_t *)
|
|
+#ifdef __FreeBSD__
|
|
+#include <floatingpoint.h>
|
|
+#endif
|
|
#include "bb.h"
|
|
#include "player.h"
|
|
|
|
@@ -818,6 +821,9 @@
|
|
// A long and complicated main() function!
|
|
|
|
main (int argc, char *argv[]) {
|
|
+#ifdef __FreeBSD__
|
|
+ fpsetmask(0);
|
|
+#endif
|
|
battleBall bb(argc,argv);
|
|
bb.Play();
|
|
}
|