blob: f29bc304e5bad0459c699422b273d6e381f2c539 [file] [log] [blame]
Szabolcs Nagy57174442013-12-12 05:09:18 +00001#define _GNU_SOURCE
Rich Felkerf4ad36c2012-02-06 01:14:23 -05002#include <stdlib.h>
3#include <stdio.h>
4
5char *gcvt(double x, int n, char *b)
6{
7 sprintf(b, "%.*g", n, x);
8 return b;
9}