The Architected Interface Facility: Operating System product includes the following files:
AIFINTR |
 |
The AIFINTR file is a binary file that contains the intrinsic definitions of all operating system AIFs. Use AIFINTR in your program to declare operating system AIFs.
Following is an example of Pascal code that enables the HP Pascal/iX compiler to locate the operating system AIF intrinsic file AIFINTR:
PROGRAM foo;
PROCEDURE intrinsic_foo; INTRINSIC; { Compiler looks for the procedure }
{ intrinsic_foo in the intrinsic }
{ file SYSINTR.PUB.SYS by default.}
$SYSINTR 'AIFINTR.PUB.SYS'$ { Switches the intrinsic file }
PROCEDURE aif_foo; INTRINSIC; {Compiler looks in AIFINTR.PUB.SYS }
begin
end.
|
Following is an example of C code that enables the HP C/iX compiler to locate the operating system AIF intrinsic file AIFINTR:
#pragma intrinsic_file "aifintr.pub.sys"
|