I am trying to compile third party c code in Visual C++ (10 years old).
Long long data type is used extensively (thousands of times).
Example: PrintLongInteger(void *,char *,long long);
I get this error message: 'long' followed by 'long' is illegal
What is the best way to solve this problem?

