Python.h problem-> /usr/include/python2.2/longobject.h:48: warning: ISO C89 does not support `long long'

Skip Montanaro skip at pobox.com
Tue Feb 10 19:50:26 EST 2004


    Chris> Is "long long" an extension of ANSI C? That Python uses?

Yup.  Python's build process knows the difference between 'long long' (the
way GCC spells it) and _int64 (the way MSVC spells it).  No other extensions
are currently supported.  Are there other ways to spell "64-bit int" in use
at the moment?

Skip




More information about the Python-list mailing list