'identifier' : intrinsic function must have prototype when using C++
The intrinsic function is not prototyped.
Example
#include <string.h> #pragma intrinsic( abs ) // error, no prototype for abs() #pragma intrinsic( strcpy ) // OK, prototyped in string.h