aboutsummaryrefslogtreecommitdiffstats
path: root/missing/gcvt.c
blob: 1ebe41e16562e7e7f26c1e8dc2f2ee383bd50c82 (plain)
1
2
3
4
5
6
7
8
9
char	*
gcvt(value, digits, buff)
double	value;
int	digits;
char	*buff;
{
	sprintf(buff, "%*g", digits, value);
	return (buff);
}