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

#include <math.h>

#define isless(__x, __y)                                         ((__x) < (__y))

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


#endif