diff --git a/sys/sys/time.h b/sys/sys/time.h index 927ceccf7c4..555c37ef5cf 100644 --- a/sys/sys/time.h +++ b/sys/sys/time.h @@ -109,7 +109,6 @@ bintime_mul(struct bintime *bt, u_int x) ((a)->frac cmp (b)->frac) : \ ((a)->sec cmp (b)->sec)) -typedef int64_t sbintime_t; #define SBT_1S ((sbintime_t)1 << 32) #define SBT_1M (SBT_1S * 60) #define SBT_1MS (SBT_1S / 1000) diff --git a/sys/sys/types.h b/sys/sys/types.h index 491e99daefc..cc0bca8f33b 100644 --- a/sys/sys/types.h +++ b/sys/sys/types.h @@ -188,6 +188,8 @@ typedef __rlim_t rlim_t; /* resource limit */ #define _RLIM_T_DECLARED #endif +typedef __int64_t sbintime_t; + typedef __segsz_t segsz_t; /* segment size (in pages) */ #ifndef _SIZE_T_DECLARED