diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2017-03-05 13:30:32 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2017-03-05 13:31:33 -0800 |
commit | 040644302120bfb11f28461aadb96c14e39f8630 (patch) | |
tree | 044cb24a0fbd98f7044c6e7fba2a7337eb34bd7e /lib/dtotimespec.c | |
parent | 53f3dd66f12660a47018fc03d50d460787ab6f64 (diff) | |
download | emacs-040644302120bfb11f28461aadb96c14e39f8630.tar.gz emacs-040644302120bfb11f28461aadb96c14e39f8630.tar.bz2 emacs-040644302120bfb11f28461aadb96c14e39f8630.zip |
Merge from gnulib
This incorporates:
2017-03-04 dtotimespec: simplify
* lib/dtotimespec.c: Copy from gnulib.
Diffstat (limited to 'lib/dtotimespec.c')
-rw-r--r-- | lib/dtotimespec.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/dtotimespec.c b/lib/dtotimespec.c index 9d81b68d817..3ca5a9cfd35 100644 --- a/lib/dtotimespec.c +++ b/lib/dtotimespec.c @@ -29,15 +29,9 @@ struct timespec dtotimespec (double sec) { - double min_representable = TYPE_MINIMUM (time_t); - double max_representable = - ((TYPE_MAXIMUM (time_t) * (double) TIMESPEC_RESOLUTION - + (TIMESPEC_RESOLUTION - 1)) - / TIMESPEC_RESOLUTION); - - if (! (min_representable < sec)) + if (! (TYPE_MINIMUM (time_t) < sec)) return make_timespec (TYPE_MINIMUM (time_t), 0); - else if (! (sec < max_representable)) + else if (! (sec < 1.0 + TYPE_MAXIMUM (time_t))) return make_timespec (TYPE_MAXIMUM (time_t), TIMESPEC_RESOLUTION - 1); else { |