aboutsummaryrefslogtreecommitdiffstats
path: root/doubletotimespec.c
diff options
context:
space:
mode:
Diffstat (limited to 'doubletotimespec.c')
-rw-r--r--doubletotimespec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/doubletotimespec.c b/doubletotimespec.c
index a104b37..f993f04 100644
--- a/doubletotimespec.c
+++ b/doubletotimespec.c
@@ -1,12 +1,13 @@
/* See LICENSE file for copyright and license details. */
-#include "libsimple.h"
+#include "common.h"
#ifndef TEST
void
libsimple_doubletotimespec(struct timespec *ts, 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)1000000000L;