aboutsummaryrefslogtreecommitdiffstats
path: root/doubletotimeval.c
diff options
context:
space:
mode:
Diffstat (limited to 'doubletotimeval.c')
-rw-r--r--doubletotimeval.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/doubletotimeval.c b/doubletotimeval.c
index 03bacec..2977f42 100644
--- a/doubletotimeval.c
+++ b/doubletotimeval.c
@@ -1,12 +1,13 @@
/* See LICENSE file for copyright and license details. */
-#include "libsimple.h"
+#include "common.h"
#ifndef TEST
void
libsimple_doubletotimeval(struct timeval *tv, double d)
{
- double ns = (long long int)d;
+ long long int d_integer = (long long int)d;
+ double ns = (double)d_integer;
long int nsi;
ns = d - ns;
ns *= (double)1000000L;