__FB_PCOS__

Intrinsic define set by the compiler

Syntax
	__FB_PCOS__

Description
	Define created at compile time if the OS has filesystem behavior styled 
	like common PC OSes, e.g. DOS, Windows, OS/2, Symbian OS, possibly 
	others. Drive letters, backslashes, that stuff, otherwise undefined.

Example
	#ifdef __FB_PCOS__
	  '...instructions for PC-ish OSes...
	#else
	  '...instructions for other OSes
	#endif 

Differences from QB
	* New to FreeBASIC

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

