summaryrefslogtreecommitdiffstats
path: root/contrib/ntp/libntp/uinttoa.c
blob: be48ea5146a6a83f261d07ea5c8f6da2092e7775 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * uinttoa - return an asciized unsigned integer
 */
#include <stdio.h>

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

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

	LIB_GETBUF(buf);

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