/* $NetBSD: uinttoa.c,v 1.1.1.1 2000/03/29 12:38:50 simonb Exp $ */ /* * uinttoa - return an asciized unsigned integer */ #include #include "lib_strbuf.h" #include "ntp_stdlib.h" char * uinttoa( u_long uval ) { register char *buf; LIB_GETBUF(buf); (void) sprintf(buf, "%lu", (u_long)uval); return buf; }