From: Anthony J B. <net...@nc...> - 2008-01-23 02:45:56
|
On Tue, 22 Jan 2008, Stephen Williams wrote: > I would *love* to see how any of the big-3 declare tf_igetp in > their veriuser.h header files on a 64bit machine;-) I'm not at work this instant so I can't check those do it but cver is supposed to be XL-compatible and this is how they define it: EXTERN int tf_igetp PROTO_PARAMS((int pnum, char *inst)); which on amd64 and ppc64 doesn't look different from what you're doing: extern PLI_INT32 tf_igetp(PLI_INT32, void*); well, unless you compile with -qintsize=8 in AIX. -t |