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

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

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