Support for very large numbers, now tested on a 64-bit machine.

This commit is contained in:
Hisham Muhammad
2014-04-09 22:49:36 -03:00
parent 127f847ca5
commit 5d6ad853fa
2 changed files with 7 additions and 7 deletions

View File

@ -182,11 +182,11 @@ extern const char *Process_fieldTitles[];
void Process_getMaxPid();
#define ONE_K 1024
#define ONE_K 1024L
#define ONE_M (ONE_K * ONE_K)
#define ONE_G (ONE_M * ONE_K)
#define ONE_DECIMAL_K 1000
#define ONE_DECIMAL_K 1000L
#define ONE_DECIMAL_M (ONE_DECIMAL_K * ONE_DECIMAL_K)
#define ONE_DECIMAL_G (ONE_DECIMAL_M * ONE_DECIMAL_K)