NetBSD/lib/libntp/inttoa.c
1997-04-18 13:22:49 +00:00

20 lines
253 B
C

/*
* inttoa - return an asciized signed integer
*/
#include <stdio.h>
#include "lib_strbuf.h"
#include "ntp_stdlib.h"
char *
inttoa(ival)
long ival;
{
register char *buf;
LIB_GETBUF(buf);
(void) sprintf(buf, "%ld", (long)ival);
return buf;
}