CYGWIN does have isnan

git-svn-id: svn+ssh://svn.cprover.org/srv/svn/cbmc/trunk@4393 6afb6bc1-c8e4-404c-8f48-9ae832c5b171
This commit is contained in:
kroening 2014-08-03 10:58:26 +00:00
parent 4884912ec1
commit 962a48968f
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#include <assert.h>
#include <math.h>
#ifdef _WIN32
#if defined(_WIN32) && !defined(__CYGWIN__)
#include <float.h>
#define isnan _isnan
#endif