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

#include <math.h>

#define islessgreater(__x, __y)                 ((__x) < (__y) || (__x) > (__y))

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


#endif