Sync usage with man page.
[netbsd-mini2440.git] / dist / ntp / libntp / inttoa.c
blob601e72367122fd2abaeb61d94eb4a38b439e93d8
1 /* $NetBSD$ */
3 /*
4 * inttoa - return an asciized signed integer
5 */
6 #include <stdio.h>
8 #include "lib_strbuf.h"
9 #include "ntp_stdlib.h"
11 char *
12 inttoa(
13 long ival
16 register char *buf;
18 LIB_GETBUF(buf);
20 (void) sprintf(buf, "%ld", (long)ival);
21 return buf;