aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/xntpd/lib/utvtoa.c
blob: b573f187a38f6f5cf0257e277f9ba2af5e0d9738 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
}