summaryrefslogtreecommitdiff
path: root/utils/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/utils.c')
-rw-r--r--utils/utils.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/utils/utils.c b/utils/utils.c
index cde3fa306..2a41c8a4c 100644
--- a/utils/utils.c
+++ b/utils/utils.c
@@ -265,17 +265,6 @@ const char *rfc1123_date(time_t t)
}
-/* exported interface documented in utils/utils.h */
-unsigned int wallclock(void)
-{
- struct timeval tv;
-
- if (gettimeofday(&tv, NULL) == -1)
- return 0;
-
- return ((tv.tv_sec * 100) + (tv.tv_usec / 10000));
-}
-
#ifndef HAVE_STRCASESTR
/**