summaryrefslogtreecommitdiff
path: root/src/stdlib/gcvt.c
blob: f29bc304e5bad0459c699422b273d6e381f2c539 (plain) (blame)
1
2
3
4
5
6
7
8
9
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdio.h>

char *gcvt(double x, int n, char *b)
{
	sprintf(b, "%.*g", n, x);
	return b;
}