diff options
| author | Tudor Brindus <me@tbrindus.ca> | 2020-06-05 17:50:00 -0400 | 
|---|---|---|
| committer | Simon Ser <contact@emersion.fr> | 2020-06-06 00:09:19 +0200 | 
| commit | c9c31f803eaebf69481d24ac9355cd1f8d3111d9 (patch) | |
| tree | 3ce2ff4a3379b3533778fc5021c12cdadeb1b797 /include/util | |
| parent | dc13bb827d6b7dd40d76ff6f7f3f06688e7d58a0 (diff) | |
| download | wlroots-c9c31f803eaebf69481d24ac9355cd1f8d3111d9.tar.xz | |
util/time: de-duplicate `timespec_to_msec`
Diffstat (limited to 'include/util')
| -rw-r--r-- | include/util/time.h | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/include/util/time.h b/include/util/time.h index a24656a9..d4b5cca7 100644 --- a/include/util/time.h +++ b/include/util/time.h @@ -1,9 +1,16 @@  #ifndef UTIL_TIME_H  #define UTIL_TIME_H +#include <time.h> +  /**   * Get the current time, in milliseconds.   */  uint32_t get_current_time_msec(void); +/** + * Convert a timespec to milliseconds. + */ +int64_t timespec_to_msec(const struct timespec *a); +  #endif  | 
