File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / ntp / libntp / inttoa.c
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:08:38 2012 UTC (12 years, 2 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

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

#include "lib_strbuf.h"
#include "ntp_stdlib.h"

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

	LIB_GETBUF(buf);
	snprintf(buf, LIB_BUFLENGTH, "%ld", val);

	return buf;
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>