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

#include "ntp_fp.h"

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

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