Where is <inttypes.h> in Visual Studio 2005?

c++, c99, visual-studio-2005

Solution

It's at google. VS doesn't come with `<inttypes.h>`

Problem

I'd like to use the C99 header file inttypes.h in a Visual Studio project (I'd like to printf 64 bit numbers). However, this file does not seem to exist in my install. Is this just not part of VS2005? Are there any alternatives?

Original source

Related problems