README, INSTALL improvements.
[dss.git] / time.c
diff --git a/time.c b/time.c
index 18366cd886946fd5433f6f0bfec3c486a8ffb8b4..6c8169f4a62c8174695598bd6c07bf756cd1b917 100644 (file)
--- a/time.c
+++ b/time.c
@@ -1,7 +1,3 @@
-#include <sys/time.h>
-#include <time.h>
-#include <inttypes.h>
-
 /*
  * Copyright (C) 2005-2008 Andre Noll <maan@systemlinux.org>
  *
@@ -10,6 +6,17 @@
 
 /** \file time.c Helper functions for dealing with time values. */
 
+#include <sys/time.h>
+#include <time.h>
+#include <inttypes.h>
+#include <assert.h>
+#include <string.h>
+
+#include "gcc-compat.h"
+#include "error.h"
+#include "string.h"
+#include "log.h"
+
 /**
  * Convert struct timeval to milliseconds.
  *
@@ -129,3 +136,11 @@ void tv_divide(const unsigned long divisor, const struct timeval *tv,
        result->tv_sec = x / 1000 / 1000;
        result->tv_usec = x % (1000 * 1000);
 }
+
+int64_t get_current_time(void)
+{
+       time_t now;
+       time(&now);
+       DSS_DEBUG_LOG("now: %lli\n", (long long) now);
+       return (int64_t)now;
+}