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

#include <math.h>

#define isgreaterequal(__x, __y)                                ((__x) >= (__y))

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


#endif