diff options
Diffstat (limited to 'usr.sbin/xntpd/lib/fptoa.c')
-rw-r--r-- | usr.sbin/xntpd/lib/fptoa.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/usr.sbin/xntpd/lib/fptoa.c b/usr.sbin/xntpd/lib/fptoa.c new file mode 100644 index 0000000..d245e9f --- /dev/null +++ b/usr.sbin/xntpd/lib/fptoa.c @@ -0,0 +1,24 @@ +/* fptoa.c,v 3.1 1993/07/06 01:08:16 jbj Exp + * fptoa - return an asciized representation of an s_fp number + */ +#include "ntp_fp.h" +#include "ntp_stdlib.h" + +char * +fptoa(fpv, ndec) + s_fp fpv; + int ndec; +{ + u_fp plusfp; + int neg; + + if (fpv < 0) { + plusfp = (u_fp)(-fpv); + neg = 1; + } else { + plusfp = (u_fp)fpv; + neg = 0; + } + + return dofptoa(plusfp, neg, ndec, 0); +} |