While compiling a Visual Studio 2010 program, I included the python2.5 directory. In the file _types.h, there is the code:
#ifndef __off64_t_defined
__extension__ typedef long long _off64_t;
#endif
with the error on extension:
this declaration has no storage class or type specifier.
What is wrong?
To quote GCC manual:
I’d say it’s safe to simply ignore it for VC2010. So just define it as nothing.