summaryrefslogtreecommitdiffstats
path: root/usr.sbin/xntpd/lib/uinttoa.c
blob: ce29390342b0000f6d73bb88fee3c3fa5b1cb8c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* uinttoa.c,v 3.1 1993/07/06 01:08:54 jbj Exp
 * uinttoa - return an asciized unsigned integer
 */
#include <stdio.h>

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

char *
uinttoa(uval)
	U_LONG uval;
{
	register char *buf;

	LIB_GETBUF(buf);

	(void) sprintf(buf, "%lu", uval);
	return buf;
}
OpenPOWER on IntegriCloud