NetBSD/dist/ntp/libntp/inttoa.c
drochner d5e6f1b80b resolve conflicts
(in this case, throw away all local modifications; I'll start patching
from scratch)
2003-12-04 16:23:34 +00:00

23 lines
316 B
C

/* $NetBSD: inttoa.c,v 1.2 2003/12/04 16:23:36 drochner Exp $ */
/*
* inttoa - return an asciized signed integer
*/
#include <stdio.h>
#include "lib_strbuf.h"
#include "ntp_stdlib.h"
char *
inttoa(
long ival
)
{
register char *buf;
LIB_GETBUF(buf);
(void) sprintf(buf, "%ld", (long)ival);
return buf;
}