To: dj AT ctron DOT com (DJ Delorie) Cc: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: clock() problems Date: Sun, 06 Nov 94 12:26:28 +0200 From: "Eli Zaretskii" ANSI C says the clock() library function should be prototyped on time.h header file. In DJGPP 1.12maint2, it isn't. Also, the macro CLOCKS_PER_SECOND is 1000000, which means clock() returns its results in microseconds. But that means that its value (a signed long) will only be wide enough for programs which run less than about 40 minutes, right? Is this wise?