From: Marko Kreen Date: Tue, 8 Jan 2008 09:44:29 +0000 (+0000) Subject: move usec_t to system.h X-Git-Tag: pgbouncer_1_2_rc2~81 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=88bff319cfef6f74a49d6dd0695e3d97edff74b7;p=pgbouncer move usec_t to system.h --- diff --git a/include/system.h b/include/system.h index 6fe3f4e..9ef317b 100644 --- a/include/system.h +++ b/include/system.h @@ -117,6 +117,8 @@ do { \ /* how many microseconds in a second */ #define USEC (1000000LL) +typedef uint64_t usec_t; + /* shortcut to simplify printf of u64 types */ typedef unsigned long long ull_t; diff --git a/include/util.h b/include/util.h index 71a17de..d7ff956 100644 --- a/include/util.h +++ b/include/util.h @@ -19,7 +19,6 @@ /* * time tools */ -typedef uint64_t usec_t; usec_t get_cached_time(void); void reset_time_cache(void);