Annotation of embedaddon/ntp/libntp/mfptoa.c, revision 1.1.1.1

1.1       misho       1: /*
                      2:  * mfptoa - Return an asciized representation of a signed long fp number
                      3:  */
                      4: #include "ntp_fp.h"
                      5: #include "ntp_stdlib.h"
                      6: 
                      7: char *
                      8: mfptoa(
                      9:        u_long fpi,
                     10:        u_long fpf,
                     11:        short ndec
                     12:        )
                     13: {
                     14:        int isneg;
                     15: 
                     16:        if (M_ISNEG(fpi, fpf)) {
                     17:                isneg = 1;
                     18:                M_NEG(fpi, fpf);
                     19:        } else
                     20:            isneg = 0;
                     21: 
                     22:        return dolfptoa(fpi, fpf, isneg, ndec, 0);
                     23: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>