blob: eb1f7d4d11fef91ee9e8b8726a7de095c1186289 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// file : timer.h
// last update: 07/09/01
#ifndef __TIMER_H
#define __TIMER_H
#include <cstdlib>
#include <sys/time.h>
static struct timeval TV;
static struct timezone TZ;
static long s_utime, s_time, u_utime, u_time;
void CLOCK_START();
void CLOCK_STOP(long*);
#endif
|