]> www.ginac.de Git - cln.git/blob - src/float/sfloat/elem/cl_SF_zerop.cc
* Removed internal gmp/ directory and other traces of it like $GMP_INCLUDES.
[cln.git] / src / float / sfloat / elem / cl_SF_zerop.cc
1 // zerop().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_sfloat.h"
8
9
10 // Implementation.
11
12 #include "cl_SF.h"
13
14 MAYBE_INLINE
15 cl_boolean zerop (const cl_SF& x)
16 {
17         return (cl_boolean) (x.word == make_SF_word(0,0,0));
18 }