remove typo
authorLee <ler762@users.sourceforge.net>
Tue, 2 Mar 2021 12:37:31 +0000 (07:37 -0500)
committerLee <ler762@users.sourceforge.net>
Tue, 2 Mar 2021 12:37:31 +0000 (07:37 -0500)
commitf329002c101b7d600fdcae13c88f73482b19ea36
treedc94fc415aed4837251b5261b43ab6a2c31d58e5
parent78619a0f9d61b2e4bbf9b940f1a92bd09981ced6
remove typo

"_CYGWIN" is not defined for the cygwin or mingw cross compiler:

$ echo | gcc -dM -E -xc - | grep -i cygwin

$ echo | i686-w64-mingw32-gcc -dM -E -xc - | grep -i cygwin

Maybe _CYGWIN is a typo left over from the days when the same gcc
compiler was used to compile native windows (gcc -mno-cygwin) and
cygwin apps?  In any case, !defined(_CYGWIN) is true so removing
the test just makes the code a bit clearer.
jcc.c