Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3108
Modified Files:
platform.h
Log Message:
compile fix for freebsd5
Index: platform.h
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/platform.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** platform.h 2 Jun 2004 15:04:06 -0000 1.15
--- platform.h 19 Sep 2004 20:55:10 -0000 1.16
***************
*** 88,91 ****
--- 88,96 ----
#endif
+ #ifdef Q_OS_FREEBSD
+ inline float ceilf(float _X)
+ {return ((float)ceil((double)_X)); }
+ #endif
+
//========================================================================
typedef unsigned long UI32;
|