author | alwin <alwin> | 2004-03-02 19:15:03 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-03-02 19:15:03 (UTC) |
commit | 4e214ca53f618d2d848c6f281c545e1883bc52eb (patch) (side-by-side diff) | |
tree | 0c276ac7e2578fc92ba10287d7a9cc90a2be3d64 | |
parent | d07327ddaab9214cde73081794dc13e33e1a1279 (diff) | |
download | opie-4e214ca53f618d2d848c6f281c545e1883bc52eb.zip opie-4e214ca53f618d2d848c6f281c545e1883bc52eb.tar.gz opie-4e214ca53f618d2d848c6f281c545e1883bc52eb.tar.bz2 |
hack so it compiles with gcc2 toolchain
-rw-r--r-- | noncore/settings/sysinfo/benchmarkinfo.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/noncore/settings/sysinfo/benchmarkinfo.cpp b/noncore/settings/sysinfo/benchmarkinfo.cpp index d6ecec5..2c68fd5 100644 --- a/noncore/settings/sysinfo/benchmarkinfo.cpp +++ b/noncore/settings/sysinfo/benchmarkinfo.cpp @@ -22,48 +22,52 @@ #include <qpe/qcopenvelope_qws.h> #include <qpe/qpedecoration_qws.h> #include <qpe/resource.h> #include <qpe/config.h> /* QT */ #include <qclipboard.h> #include <qcolor.h> #include <qcombobox.h> #include <qdirectpainter_qws.h> #include <qfile.h> #include <qtextstream.h> #include <qfiledialog.h> #include <qlabel.h> #include <qlayout.h> #include <qpainter.h> #include <qpushbutton.h> #include <qtimer.h> /* STD */ #include <time.h> #include <stdio.h> #include <stdlib.h> #include <math.h> +#if defined (__GNUC__) && (__GNUC__ < 3) +extern double round(double); +#endif + #include "benchmarkinfo.h" extern "C" { void BenchFFT( void ); double dhry_main( int ); } #define DHRYSTONE_RUNS 20000000 #define TEST_DURATION 3 #define BUFF_SIZE 8192 #define FILE_SIZE 1024 * 1024 // 1Mb //=========================================================================== class BenchmarkPaintWidget : public QWidget { public: BenchmarkPaintWidget() : QWidget( 0, "Benchmark Paint Widget", WStyle_Customize|WStyle_StaysOnTop|WPaintUnclipped|WPaintClever ) { resize( QApplication::desktop()->size() ); show(); |