'identifier' : not available as an intrinsic function
The specified function cannot be used as an intrinsic function. The compiler ignores the invalid function name. The following sample generates C4163:
// compile with /W1 #include <math.h> #pragma intrinsic(mysin) // C4163 // use the following line to resolve the warning // #pragma intrinsic(sin) void main() { }