summaryrefslogtreecommitdiff
path: root/src/math/islessgreater.c
blob: a25664746264c1d4fee7aabc8b4532dd262daf96 (plain)
1
2
3
4
5
6
7
#include <math.h>
#define islessgreater(x,y)                              ((x) < (y) || (x) > (y))

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