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
/
inttoa.c
blob
601e72367122fd2abaeb61d94eb4a38b439e93d8
1
/* $NetBSD$ */
2
3
/*
4
* inttoa - return an asciized signed integer
5
*/
6
#include <stdio.h>
7
8
#include
"lib_strbuf.h"
9
#include
"ntp_stdlib.h"
10
11
char
*
12
inttoa
(
13
long
ival
14
)
15
{
16
register
char
*
buf
;
17
18
LIB_GETBUF
(
buf
);
19
20
(
void
)
sprintf
(
buf
,
"%ld"
, (
long
)
ival
);
21
return
buf
;
22
}