diff options
Diffstat (limited to 'usr.sbin/xntpd/lib/utvtoa.c')
-rw-r--r-- | usr.sbin/xntpd/lib/utvtoa.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/usr.sbin/xntpd/lib/utvtoa.c b/usr.sbin/xntpd/lib/utvtoa.c new file mode 100644 index 0000000..b573f18 --- /dev/null +++ b/usr.sbin/xntpd/lib/utvtoa.c @@ -0,0 +1,21 @@ +/* utvtoa.c,v 3.1 1993/07/06 01:08:55 jbj Exp + * utvtoa - return an asciized representation of an unsigned struct timeval + */ +#include <stdio.h> +#include <sys/time.h> + +#include "lib_strbuf.h" +#include "ntp_stdlib.h" + +char * +utvtoa(tv) + 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; +} |