Comment 1 for bug 1274413

Revision history for this message
Marius Gedminas (mgedmin) wrote :

http://stackoverflow.com/questions/126279/c99-stdint-h-header-and-ms-visual-studio has some possible workarounds, e.g.

    #ifdef _MSC_VER

    typedef __int32 int32_t;
    typedef unsigned __int32 uint32_t;
    typedef __int64 int64_t;
    typedef unsigned __int64 uint64_t;

    #else
    #include <stdint.h>
    #endif