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

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

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