repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
dist
/
ntp
/
libntp
/
uinttoa.c
blob
200dfa07a4c12cd20d4f7eeafb687e0b72cece6d
1
/* $NetBSD$ */
2
3
/*
4
* uinttoa - return an asciized unsigned integer
5
*/
6
#include <stdio.h>
7
8
#include
"lib_strbuf.h"
9
#include
"ntp_stdlib.h"
10
11
char
*
12
uinttoa
(
13
u_long uval
14
)
15
{
16
register
char
*
buf
;
17
18
LIB_GETBUF
(
buf
);
19
20
(
void
)
sprintf
(
buf
,
"%lu"
, (
u_long
)
uval
);
21
return
buf
;
22
}