On a cross platform c/c++ project (Win32, Linux, OSX), I need to use the *printf functions to print some variables of type size\_t.  In some environments size_t's are 8 bytes and on others they are 4.  On glibc I have the %z option, and on Win32 I can use [%I][1].  Is there an elegant way to handle this?


  [1]: http://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx