mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-14 00:24:03 -04:00
28 lines
389 B
C
28 lines
389 B
C
/* $NetBSD: fptoa.c,v 1.1.1.1 2009/12/13 16:55:02 kardel Exp $ */
|
|
|
|
/*
|
|
* fptoa - return an asciized representation of an s_fp number
|
|
*/
|
|
#include "ntp_fp.h"
|
|
#include "ntp_stdlib.h"
|
|
|
|
char *
|
|
fptoa(
|
|
s_fp fpv,
|
|
short 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);
|
|
}
|