blob: 33c7ddeb82335414c5096bc2d9f34fd138f9cd85 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "f2c.h"
#include <sys/times.h>
#include <sys/types.h>
#include <time.h>
#ifndef CLK_TCK
#define CLK_TCK 60
#endif
doublereal second_()
{
struct tms rusage;
times(&rusage);
return (doublereal)(rusage.tms_utime) / CLK_TCK;
} /* second_ */
|