summaryrefslogtreecommitdiff
path: root/src/math/copysign.c
blob: 6e5cb1277ec1a0e5dbf720b8ed2ae0c4c9ce1a88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# define TGSOURCE "copysign.c"
#include "_tgmath.h"
#include <math.h>

TYPE TGFN(copysign)(TYPE x, TYPE y)
{
	return 0.0;
}

/*
STDC(199901)
LINK(m)
*/