/*
 * ulfptoa - return an asciized representation of an unsigned l_fp number
 */
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>

#include "ntp_fp.h"

char *
ulfptoa(fpv, ndec)
	l_fp *fpv;
	int ndec;
{
	extern char *umfptoa();

	return umfptoa(fpv->l_ui, fpv->l_uf, ndec);
}
