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

#include <math.h>

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

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


#endif