summaryrefslogtreecommitdiff
path: root/src/stdlib/gcvt.c
blob: 61b401324f73c48042a0d7881b1d05dad7cb937b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdlib.h>
#include "_stdlib.h"

char *gcvt(double value, int ndigit, char *buf)
{
	SIGNAL_SAFE(0);
	return 0;
}

/*
XOPEN(400,700)
*/