summaryrefslogtreecommitdiff
path: root/src/math/islessequal.c
blob: 34a1c138975dabe7fe65ae270f8a3aefdbb9106a (plain)
1
2
3
4
5
6
7
8
#include <math.h>

#define islessequal(__x, __y)                                   ((__x) <= (__y))

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