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

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

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