From 4c3e546b57ec67884fe9fab258b478e968c46ea5 Mon Sep 17 00:00:00 2001 From: frekky Date: Sat, 9 Jan 2016 15:05:41 +0800 Subject: [PATCH] Remove unused date constants --- src/windows.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/windows.h b/src/windows.h index cb7e399..909e5f6 100644 --- a/src/windows.h +++ b/src/windows.h @@ -93,13 +93,6 @@ struct ip struct in_addr ip_src, ip_dst; /* source and dest address */ }; -/* windows gettimeofday from https://gist.github.com/ugovaretto/5875385 */ -#if defined(_MSC_VER) || defined(_MSC_EXTENSIONS) - #define DELTA_EPOCH_IN_MICROSECS 116444736000000000Ui64 -#else - #define DELTA_EPOCH_IN_MICROSECS 116444736000000000ULL -#endif - /* Convenience macros for operations on timevals. NOTE: `timercmp' does not work for >= or <=. */ #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)