(K&R, §A2.4) The C compiler can recognize several additional reserved keywords. The ANSI Keywords Only option in the C/C++ Language Panel controls whether the compiler recognizes these keywords.
When this option is off, these additional keywords are available to you:
This keyword lets you use the compiler's built-in inline assembler. (K&R, §A10.1) For more information on the inline assemblers, consult the relevant Targeting manual for the platform you want to write assembly language for.far
inline
Lets you declare a C function to be inline. For more information, see "Inlining."
__declspec(arg)
pascal
This keyword is used in Mac OS programming.
__stdcall
This keyword is used in Microsoft Win32 programming.
vector, pixel
These keywords are used when generating PowerPC Altivec object code. See "altivec_codegen," "altivec_model," and "altivec_codegen."
The ANSI Keywords Only option corresponds to the pragma only_std_keywords.To check whether this option is on, use __option (only_std_keywords). By default, this option is off.
See also "only_std_keywords" and "Checking Options."