blob: 4973c4abd5cf59d6993f5144494166e92ed1c014 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _HACK_TIME_H_
#define _HACK_TIME_H_
#include <sys/time.h>
#include "mapped-time.h"
#define do_gettimeofday(tp) maptime_read (mapped_time, (tp))
#define get_fast_time(tp) maptime_read (mapped_time, (tp))
#endif
|