missing '>'
An #include directive lacks a closing angle bracket. Add the closing bracket to resolve the error. The following sample generates C2013:
#include <stdio.h // C2013 #include <stdio.h> // ok void main() { }