home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xntp3.zip / lib / ulfptoms.c < prev    next >
C/C++ Source or Header  |  1989-08-11  |  297b  |  19 lines

  1. /*
  2.  * ulfptoms - return an asciized unsigned l_fp number in milliseconds
  3.  */
  4. #include <sys/types.h>
  5. #include <sys/socket.h>
  6. #include <netinet/in.h>
  7.  
  8. #include "ntp_fp.h"
  9.  
  10. char *
  11. ulfptoms(fpv, ndec)
  12.     l_fp *fpv;
  13.     int ndec;
  14. {
  15.     extern char *umfptoms();
  16.  
  17.     return umfptoms(fpv->l_ui, fpv->l_uf, ndec);
  18. }
  19.