/* * Copyright (c) 1996 by Sun Microsystems, Inc. * All Rights Reserved. */ #pragma ident "%Z%%M% %I% %E% SMI" /* * uinttoa - return an asciized unsigned integer */ #include #include "lib_strbuf.h" #include "ntp_stdlib.h" char * uinttoa(uval) u_long uval; { register char *buf; LIB_GETBUF(buf); (void) sprintf(buf, "%lu", (u_long)uval); return buf; }