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