/contrib/ntp/libntp/inttoa.c

https://bitbucket.org/freebsd/freebsd-head/ · C · 20 lines · 13 code · 4 blank · 3 comment · 0 complexity · 797ed8f071d81f83981a0ebbcd904c42 MD5 · raw file

  1. /*
  2. * inttoa - return an asciized signed integer
  3. */
  4. #include <stdio.h>
  5. #include "lib_strbuf.h"
  6. #include "ntp_stdlib.h"
  7. char *
  8. inttoa(
  9. long ival
  10. )
  11. {
  12. register char *buf;
  13. LIB_GETBUF(buf);
  14. (void) sprintf(buf, "%ld", (long)ival);
  15. return buf;
  16. }