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

#include "ntp_fp.h"

char *
lfptoa(fpv, ndec)
	l_fp *fpv;
	int ndec;
{
	extern char *mfptoa();

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