1998-01-09 06:15:09 +03:00
|
|
|
/* $NetBSD: utvtoa.c,v 1.2 1998/01/09 03:16:39 perry Exp $ */
|
|
|
|
|
1997-04-18 17:22:49 +04:00
|
|
|
/*
|
|
|
|
* utvtoa - return an asciized representation of an unsigned struct timeval
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
#include "lib_strbuf.h"
|
|
|
|
#if defined(VMS)
|
|
|
|
#include "ntp_fp.h"
|
|
|
|
#endif
|
|
|
|
#include "ntp_stdlib.h"
|
|
|
|
#include "ntp_unixtime.h"
|
|
|
|
|
|
|
|
char *
|
|
|
|
utvtoa(tv)
|
|
|
|
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;
|
|
|
|
}
|