summaryrefslogtreecommitdiff
path: root/src/math/isgreater.c
blob: b778c1ddb888c881a2a04cb5d6b0f1e22b85fd30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#if 0

#include <math.h>

#define isgreater(__x, __y)                                      ((__x) > (__y))

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


#endif