diff options
author | 2019-08-12 17:59:10 +0300 | |
---|---|---|
committer | 2019-08-12 17:59:10 +0300 | |
commit | 3fcd58c715993b3c2a42e21d41fece5d7d09243c (patch) | |
tree | 14793609fc8f94b2f9d8014dd8d554414cc6b53b /src/time/time_private.h | |
parent | 7c4f627ebb0e2d2f1922c4ec18032a3619ea5f1d (diff) | |
download | librin-3fcd58c715993b3c2a42e21d41fece5d7d09243c.tar.gz librin-3fcd58c715993b3c2a42e21d41fece5d7d09243c.tar.bz2 librin-3fcd58c715993b3c2a42e21d41fece5d7d09243c.zip |
time: add timeval versions.
We now got functions to operate on both struct timespec and
struct timeval.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'src/time/time_private.h')
-rw-r--r-- | src/time/time_private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/time/time_private.h b/src/time/time_private.h index 4bb6099..097a987 100644 --- a/src/time/time_private.h +++ b/src/time/time_private.h @@ -22,5 +22,6 @@ #define LIBRIN_TIME_PRIVATE_INCLUDED static const long tv_nsec_max = 999999999l; +static const long tv_usec_max = 999999l; #endif /* LIBRIN_TIME_PRIVATE_INCLUDED */ |