rustit/mirror_runit/runit-2.1.2/src/fmt_uint.c

9 lines
133 B
C
Raw Normal View History

2024-03-25 00:51:57 +01:00
/* Public domain. */
#include "fmt.h"
unsigned int fmt_uint(register char *s,register unsigned int u)
{
return fmt_ulong(s,u);
}