so I got an amd64 mobo (ASUS KV8 SE Deluxe) and 3000+ CPU.

now, I've got a programming question ;)

If there's code that does

        void *data;
        ...
        data = (void*)open(...);

would it be "fixed" by adding a intptr_t cast?

        void *data;
        ...
        data = (void*)(intptr_t)open(...);

it shuts gcc up anyway.

where is intptr_t defined on GNU/Linux?  it's in <inttypes.h> on
OpenBSD.

-- 
<[EMAIL PROTECTED]>
_______________________________________________
EUGLUG mailing list
euglug@euglug.org
http://www.euglug.org/mailman/listinfo/euglug

Reply via email to