Current Path : /usr/src/contrib/ntp/libntp/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/contrib/ntp/libntp/utvtoa.c |
/* * 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; }