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

TYPE TGFN(trunc)(TYPE x)
{
	return x;
}

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