__Fb_Unix__
Intrinsic define set by the compiler
__FB_UNIX__
Define created at compile time if the OS is reasonably enough like UNIX that you can call it UNIX, otherwise undefined.
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.
Example
#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