__FB_LINUX__

Intrinsic define set by the compiler

Syntax
	__FB_LINUX__

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

Example
	#ifdef __FB_LINUX__
	  ' ... instructions only for Linux ...
	  ' ... #libpath "/usr/X11/lib" 
	#else
	  ' ... instructions not for Linux ...
	#endif 

Differences from QB
	* New to FreeBASIC

See also
	* KeyPgDdfbdos__FB_DOS__
	* KeyPgDdfbwin32__FB_WIN32__
	* KeyPgDdfbunix__FB_UNIX__
	* CompilerOpttargetCompiler Option: -target

