freebsd-dev/usr.sbin/xntpd/lib/utvtoa.c

22 lines
352 B
C
Raw Normal View History

1994-09-29 23:04:24 +00:00
/*
1993-12-21 18:36:48 +00:00
* 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);
1995-05-30 03:57:47 +00:00
1994-09-29 23:04:24 +00:00
(void) sprintf(buf, "%lu.%06lu", (u_long)tv->tv_sec,
(u_long)tv->tv_usec);
1993-12-21 18:36:48 +00:00
return buf;
}