#elsifdef?

2000-05-02  Tor Lillqvist  <tml@iki.fi>

* libgimp/gimpmath.h: #elsifdef?
This commit is contained in:
Tor Lillqvist 2000-05-01 23:17:38 +00:00 committed by Tor Lillqvist
parent 4ab88cb628
commit afcd39a44f
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2000-05-02 Tor Lillqvist <tml@iki.fi>
* libgimp/gimpmath.h: #elsifdef?
Mon May 1 13:35:46 PDT 2000 Manish Singh <yosh@gimp.org>
* Made 1.1.21 release (1.2pre)

View File

@ -82,11 +82,13 @@ extern "C" {
#ifdef G_OS_WIN32
#define FINITE(x) _finite(x)
#elsifdef __EMX__
#else
#ifdef __EMX__
#define FINITE(x) isfinite(x)
#else
#define FINITE(x) finite(x)
#endif
#endif
#ifdef __cplusplus
}