__FB_CYGWIN__

Intrinsic define set by the compiler

Syntax
	__FB_CYGWIN__

Description
	Define without a value created at compile time in the Cygwin version of 
	the compiler, or when the CompilerOpttarget-target cygwin command line option is used. It 
	can be used to compile parts of the program only if the target is 
	Cygwin.

Example
	#ifdef __FB_CYGWIN__
	  '...instructions only for Cygwin...
	#else
	  '...instructions not for Cygwin...
	#endif 

Differences from QB
	* New to FreeBASIC

See also
	* KeyPgDdfblinux__FB_LINUX__
	* KeyPgDdfbwin32__Fb_Win32_
	* KeyPgDdfbunix__FB_UNIX__
	* CompilerOpttargetCompiler Option: -target

