Sign in
apache
/
infrastructure-ezmlm-idx
/
refs/heads/avoid-duplicate-headers
/
.
/
fmt_uint.c
blob: 9760d44fd80162da86fbffcbe120b64398ff3239 [
file
]
/* Public domain, from daemontools-0.76. */
#include
"fmt.h"
unsigned
int
fmt_uint
(
char
*
s
,
unsigned
int
u
)
{
return
fmt_ulong
(
s
,
u
);
}