summaryrefslogtreecommitdiff
path: root/src/math/y0.c
blob: c70878eeff8b21d4113c4a6ff56c8040738da5d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <math.h>

double y0(double x)
{
	SIGNAL_SAFE(0);
        return x;
}

/*
XOPEN(4)
LINK(m)
*/