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

#include "ntp_fp.h"

char *
ulfptoms(fpv, ndec)
	l_fp *fpv;
	int ndec;
{
	extern char *umfptoms();

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