/*
 * uinttoa - return an asciized unsigned integer
 */
#include <stdio.h>
#include <sys/types.h>
#include <sys/time.h>

#include "lib_strbuf.h"

char *
uinttoa(uval)
	u_long uval;
{
	register char *buf;

	LIB_GETBUF(buf);

	(void) sprintf(buf, "%lu", uval);
	return buf;
}
