Comment 1 for bug 781179

Revision history for this message
Jakub Wilk (jwilk) wrote : Re: [Bug 781179] [NEW] uintptr_t is not defined under MS VC++ 6

>typedef unsigned long intptr_t;
>typedef unsigned int* uintptr_t; // added by monday2000

intptr_t is supposed to be a signed integer type, uintptr_t an unsigned
integer type. So in fact both of these definitions are incorrect.

--
Jakub Wilk