The information in this article applies to:
SUMMARYThere are a number of C Run-time routines that have both a function version and an intrinsic version. If the following statement is used in an application to force use of the function version:
where a_CFunction is a C Run-time library routine, the compiler generates
the following error:
if the /Oi option is not used. The same is true for the following statement to force use of the intrinsic:
MORE INFORMATION
When you don't use the /Oi or /Ox option, you need to declare a function
prototype before you can use the function or intrinsic pragmas. For
example, to properly use the memcpy function in the Sample Code below,
either STRING.H or MEMORY.H must be included. Consult the C Run-time
documentation for the appropriate header (.H) file to include.
Sample Code
Additional query words: 8.00 8.00c 9.00 9.10
Keywords : kbcode kbCompiler kbVC100 kbVC150 kbVC151 kbVC152 kbVC200 kbVC210 kbVC400 kbVC500 kbVC600 |
Last Reviewed: July 1, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |