Choral
SRC
cFunc.c
Go to the documentation of this file.
1
#include <sys/types.h>
2
#include <unistd.h>
3
#include <sys/time.h>
4
5
6
double
clockget_
() {
7
struct
timeval tv2;
8
double
dt;
9
gettimeofday(&tv2, (
struct
timezone*)0);
10
dt = ((tv2).tv_sec + 0.000001*(tv2).tv_usec);
11
return
(dt);
12
}
clockget_
double clockget_()
Definition:
cFunc.c:6
Generated on Mon May 17 2021 15:14:13 for Choral by
1.8.13