author | zecke <zecke> | 2004-03-15 13:52:09 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-03-15 13:52:09 (UTC) |
commit | 9968c354f7aa5fb3ba43ab37c0ce24329ad3104f (patch) (side-by-side diff) | |
tree | d14c50fcb95a781fa89fa60c8184fbf34f39b600 | |
parent | 37a57ea21d008f9e06e912f22d017cbf9609ec1f (diff) | |
download | opie-9968c354f7aa5fb3ba43ab37c0ce24329ad3104f.zip opie-9968c354f7aa5fb3ba43ab37c0ce24329ad3104f.tar.gz opie-9968c354f7aa5fb3ba43ab37c0ce24329ad3104f.tar.bz2 |
Use qRound if round is not present
-rw-r--r-- | noncore/settings/sysinfo/benchmarkinfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/sysinfo/benchmarkinfo.cpp b/noncore/settings/sysinfo/benchmarkinfo.cpp index 2a52b00..96bcdfc 100644 --- a/noncore/settings/sysinfo/benchmarkinfo.cpp +++ b/noncore/settings/sysinfo/benchmarkinfo.cpp @@ -45,13 +45,13 @@ /* STD */ #include <time.h> #include <stdio.h> #include <stdlib.h> #include <math.h> #if defined (__GNUC__) && (__GNUC__ < 3) -extern double round(double); +#define round qRound #endif using namespace Opie::Ui; using namespace Opie::Core; extern "C" |