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-16
C Compiler Translation Limits
The following OSS C compiler pragmas are included:
A complete list of all pragmas supported by HP can be found in the C/C++
Programmers Guide. The compiler version and SYSTYPE setting determine the
pragma defaults.
C Compiler Translation Limits
A C compiler that conforms to the ISO/ANSI C standard must indicate its translation
limits. The key translation limits and the guaranteed minimums for the native C and
TNS C compilers are contained in the C/C++ Programmer’s Guide.
The native compilers use dynamic data structures, so some program components are
limited by the amount of available memory. If the program you are porting to the OSS
environment doesn’t exceed the guaranteed limits, it should successfully compile with
the native compiler.
C Data Types
The integral data types and the floating point data types supported in the C compilation
environments are specified in limits.h and float.h header files, respectively.
OSS C Run-Time Library
The TNS/R and TNS/E native C run-time libraries used by Open System Services
contains more than 300 predefined macros and functions. The C run-time library
supports both the OSS and Guardian environments. It consists of the complete list of
functions specified by the ISO/ANSI C standard, additional functions specified by the
XPG4 specifications, and functions specific to HP. Many C run-time library functions
are identical, regardless of the environment. However, there are both OSS and
Guardian versions of some functions.
Guardian and OSS API interoperability is provided by making the OSS C and Guardian
C APIs similar to one another. The C run-time library supports two variants of some
functions that support different semantics in the OSS environment from in the Guardian
environment. Environment-specific functions such as fopen() have a variant for each
environment: fopen_oss() and fopen_guardian(). See Environment-Specific
ANSICOMPLY Strict ISO/ANSI C syntax checking (only for G-series TNS C
compiler)
EXTENSIONS HP language extensions are allowed (only for native C compilers)
ANSISTREAMS Odd-unstructured standard I/O files
FUNCTION Attributes of external routines
SYSTYPE Target environment, OSS C compilers default to SYSTYPE OSS
WIDE Data model (default value for SYSTYPE OSS)
NOEXTENSIONS Strict ISO/ANSI C syntax checking (only for native C compilers)