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

#include "ntp_fp.h"

char *
ufptoa(fpv, ndec)
	u_fp fpv;
	int ndec;
{
	extern char *dofptoa();

	return dofptoa(fpv, 0, ndec, 0);
}
