summary refs log tree commit diff
path: root/src/fmt_uint.c
blob: b8ec0b703c0965215f963fdc39566053c538c798 (plain) (blame)
1
2
3
4
5
6
7
8
/* Public domain. */

#include "fmt.h"

unsigned int fmt_uint(register char *s,register unsigned int u)
{
  return fmt_ulong(s,u);
}