summaryrefslogtreecommitdiff
path: root/nacl/curvecp/nanoseconds.c
diff options
context:
space:
mode:
Diffstat (limited to 'nacl/curvecp/nanoseconds.c')
-rw-r--r--nacl/curvecp/nanoseconds.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/nacl/curvecp/nanoseconds.c b/nacl/curvecp/nanoseconds.c
deleted file mode 100644
index 158ff402..00000000
--- a/nacl/curvecp/nanoseconds.c
+++ /dev/null
@@ -1,12 +0,0 @@
1#include <time.h>
2#include "nanoseconds.h"
3
4/* XXX: Y2036 problems; should upgrade to a 128-bit type for this */
5/* XXX: nanosecond granularity limits users to 1 terabyte per second */
6
7long long nanoseconds(void)
8{
9 struct timespec t;
10 if (clock_gettime(CLOCK_REALTIME,&t) != 0) return -1;
11 return t.tv_sec * 1000000000LL + t.tv_nsec;
12}