freebsd-nq/libntp/uinttoa.c
Ollivier Robert 2b45e011ca Virgin import of ntpd 4.2.6p5.
When the series of commits is complete, things like
https://cert.litnet.lt/en/docs/ntp-distributed-reflection-dos-attacks
should be fixed.

PR:		bin/148836 (except that we import a newer version)
Asked by:	Too many
MFC after:	2 weeks
2013-12-04 21:33:17 +00:00

21 lines
259 B
C

/*
* 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);
snprintf(buf, LIB_BUFLENGTH, "%lu", uval);
return buf;
}