mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-03 22:23:24 +00:00
30 lines
516 B
Plaintext
30 lines
516 B
Plaintext
*** samples/speed.c.0 Fri Mar 3 16:38:42 1995
|
|
--- samples/speed.c Sun Mar 5 18:59:23 1995
|
|
***************
|
|
*** 35,40 ****
|
|
--- 35,44 ----
|
|
#include <sys/param.h>
|
|
#endif
|
|
|
|
+ #ifdef __STDC__
|
|
+ #include <time.h>
|
|
+ #endif
|
|
+
|
|
|
|
#define GAP 10
|
|
#define ROWS 1
|
|
***************
|
|
*** 122,128 ****
|
|
--- 126,136 ----
|
|
clock_t clk;
|
|
|
|
clk = times(&tm);
|
|
+ #ifdef __STDC__
|
|
+ return (double)clk / (double)CLOCKS_PER_SEC;
|
|
+ #else
|
|
return (double)clk / (double)HZ;
|
|
+ #endif
|
|
#else
|
|
return 0;
|
|
#endif
|