aboutsummaryrefslogtreecommitdiff
path: root/src/core/clock.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/clock.c')
-rw-r--r--src/core/clock.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/core/clock.c b/src/core/clock.c
deleted file mode 100644
index 49b972e7..00000000
--- a/src/core/clock.c
+++ /dev/null
@@ -1,22 +0,0 @@
-//
-// Copyright 2017 Garrett D'Amore <garrett@damore.org>
-//
-// This software is supplied under the terms of the MIT License, a
-// copy of which should be located in the distribution where this
-// file was obtained (LICENSE.txt). A copy of the license may also be
-// found online at https://opensource.org/licenses/MIT.
-//
-
-#include "core/nng_impl.h"
-
-nni_time
-nni_clock(void)
-{
- return (nni_plat_clock());
-}
-
-void
-nni_msleep(nni_duration msec)
-{
- nni_plat_sleep(msec);
-}