__FB_UNIX__
Intrinsic define set by the compiler
Syntax:
__FB_UNIX__
Description:
Define created at compile time if the OS is reasonably enough like UNIX that you can call it UNIX, otherwise undefined.
Examples:
#IFDEF __FB_UNIX__
'...instructions for UNIX-family OSes...
#ELSE
'...instructions for other OSes
#ENDIF
'...instructions for UNIX-family OSes...
#ELSE
'...instructions for other OSes
#ENDIF
Differences from QB:
- New to FreeBASIC
See also:
- __FB_LINUX__
- __FB_FREEBSD__
- __FB_OPENBSD__
- __FB_NETBSD__
- __FB_CYGWIN__
- __FB_DARWIN__
- __FB_PCOS__
- Compiler Option: -target
Back to Intrinsic Defines