diff options
author | Alexander Kuleshov <kuleshovmail@gmail.com> | 2016-02-09 14:23:24 +0600 |
---|---|---|
committer | Alexander Kuleshov <kuleshovmail@gmail.com> | 2016-02-10 17:46:52 +0600 |
commit | aaea9db80cdf0a9209b18464101a948d6242cab2 (patch) | |
tree | d32cb13ab9c75807f2c53ad5bb99be48be320707 /src/basic/time-util.h | |
parent | 70b65964d7ef03621f5d4abd23150c1b121989b4 (diff) |
time-util: make timespec_load_nsec() static
The timespec_load_nsec() function has no callers outside of the
time-util.c, so we can make it static.
Diffstat (limited to 'src/basic/time-util.h')
-rw-r--r-- | src/basic/time-util.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/basic/time-util.h b/src/basic/time-util.h index 87440faeee..5b4b5b9485 100644 --- a/src/basic/time-util.h +++ b/src/basic/time-util.h @@ -92,8 +92,6 @@ struct timespec *timespec_store(struct timespec *ts, usec_t u); usec_t timeval_load(const struct timeval *tv) _pure_; struct timeval *timeval_store(struct timeval *tv, usec_t u); -nsec_t timespec_load_nsec(const struct timespec *ts) _pure_; - char *format_timestamp(char *buf, size_t l, usec_t t); char *format_timestamp_utc(char *buf, size_t l, usec_t t); char *format_timestamp_us(char *buf, size_t l, usec_t t); |