Open System Services Porting Guide (G06.24+, H06.03+)

Table Of Contents
Porting UNIX Applications to the OSS Environment
Open System Services Porting Guide520573-006
7-15
C Compiler Pragmas
Predefined Preprocessor Symbols
The native and TNS C compilers provide three predefined preprocessor symbols:
__TANDEM, __INT32, and __XMEM. (Note that there are two underscores, “__”, at the
beginning of these three preprocessor symbol names.)
You can use __TANDEM to increase the portability of your C programs. (Enclose
system-dependent source text in #ifdef or #ifndef directives to test for the
existence of __TANDEM.)
For the TNS environment, __INT32 (for int defined as 32 bits) is defined by the C
compiler when the WIDE pragma is present; __XMEM (for large memory model) is
defined by the C compiler when the XMEM pragma is present. For the native
environments, these two symbols are always defined.
The TNS/R and TNS/E native C compilers also provide the _TNS_R_TARGET and
_TNS_E_TARGET predefined preprocessor symbols, respectively, which distinguish
them from the TNS C compiler.
C Compiler Pragmas
The #pragma directive is used by C implementations to add preprocessor activities or
provide implementation-defined information to the compiler. The use of pragmas is
completely implementation-dependent. Pragmas are most often used in system header
files. (You will rarely need to add specific pragmas to your program.) Pragmas handle
the interface to the routines maintained in the system-wide library.
_OSS_HOST When defined, the identifiers used by the C
compiler for the OSS environment are identified.
The user does not define or undefine this macro,
it is used only by the compiler.
_OSS_TARGET When defined, the identifiers required for
executing in an OSS environment are identified.
The user does not explicitly define this macro, it
is defined when using the c89
-Wsystype=oss flag.
_IGNORE_LOCALE When defined, macros that support only the
C/POSIX locale are selected, instead of
internationalized functions that support multiple
locales. The macro _IGNORE_LOCALE affects
functions in the ctype.h header file.