summaryrefslogtreecommitdiffstats
path: root/contrib/ntp/libntp/utvtoa.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ntp/libntp/utvtoa.c')
-rw-r--r--contrib/ntp/libntp/utvtoa.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/contrib/ntp/libntp/utvtoa.c b/contrib/ntp/libntp/utvtoa.c
deleted file mode 100644
index a441c49..0000000
--- a/contrib/ntp/libntp/utvtoa.c
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * utvtoa - return an asciized representation of an unsigned struct timeval
- */
-#include <stdio.h>
-
-#include "lib_strbuf.h"
-
-#if defined(VMS)
-# include "ntp_fp.h"
-#endif
-#include "ntp_stdlib.h"
-#include "ntp_unixtime.h"
-
-char *
-utvtoa(
- const struct timeval *tv
- )
-{
- register char *buf;
-
- LIB_GETBUF(buf);
-
- (void) sprintf(buf, "%lu.%06lu", (u_long)tv->tv_sec,
- (u_long)tv->tv_usec);
- return buf;
-}
OpenPOWER on IntegriCloud