/*
 * umfptoa - Return an asciized representation of an unsigned long fp number
 */
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>

#include "ntp_fp.h"

char *
umfptoa(fpi, fpf, ndec)
	u_long fpi;
	u_long fpf;
	int ndec;
{
	extern char *dolfptoa();

	return dolfptoa(fpi, fpf, 0, ndec, 0);
}
