24cf4a1294b7e146f488b877eb87b9f2e83eaa9c hiram Wed Feb 28 17:39:28 2024 -0800 moving static loadSizes() function from hg/utils/pslCheck.c to lib/common.c no redmine diff --git src/inc/common.h src/inc/common.h index bbfdb28..c14cbcd 100644 --- src/inc/common.h +++ src/inc/common.h @@ -1621,16 +1621,19 @@ char *shorterDouble(double value); /* Work around a "bug" in %g output that goes into scientific notation too early. */ struct runTimes /* clock time since epoch, user CPU, and system CPU, in seconds */ { double clockSecs; double userSecs; double sysSecs; }; struct runTimes getTimesInSeconds(void); /* get the current clock time since epoch, process user CPU, and system CPU times, all in * seconds. */ +struct hash *loadSizes(char *sizesFile); +/* load a sizes file */ + #endif /* COMMON_H */