tokkee.org
Code
projects
/
inkscape.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
show waiting cursor while ExecutionEnv is working
[inkscape.git]
/
src
/
isnormal.h
1
#ifndef __ISNORMAL_H__
2
#define __ISNORMAL_H__
3
4
/*
5
* Fix for missing std::isnormal with SOLARIS8/GCC3.2
6
*/
7
8
#if defined (SOLARIS)
9
10
#include <ieeefp.h>
11
#define isnormal(x) (fpclass(x) >= FP_NZERO)
12
13
#else
14
15
using std::isnormal;
16
17
#endif
18
19
#endif /* __ISNORMAL_H__ */