/*
 * inttoa - return an asciized signed integer
 */
#include <stdio.h>
#include <sys/types.h>
#include <sys/time.h>

#include "lib_strbuf.h"

char *
inttoa(ival)
	long ival;
{
	register char *buf;

	LIB_GETBUF(buf);

	(void) sprintf(buf, "%ld", ival);
	return buf;
}
