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

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