blob: 10b8be95b79a0182e08ee19f9392cc90279ae794 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
int
libsimple_multimeval(struct timeval *prod, const struct timeval *multiplicand, int multiplier)
{
struct timespec a, p;
int r;
libsimple_timeval2timespec(&a, multiplicand);
r = libsimple_multimespec(&p, &a, multiplier);
if (r && errno != ERANGE)
return r;
return r | libsimple_timespec2timeval(prod, &p);
}
|