summaryrefslogtreecommitdiff
path: root/src/math/copysign.c
blob: a462348b42b535b3c4294a576ea598f4f815a553 (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 x - y;
}

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