summaryrefslogtreecommitdiff
path: root/src/math/trunc.c
blob: 77671f5d8e7b93e02c58320006c790c71599c147 (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 0.0;
}

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