At 16:35 2003-1-30 +0100, you wrote:
Which compiler are you using that doesn't support standard syntax for noting the size of an integer constant? I know that both CodeWarrior and prc-tools are fine with this syntax.The problem is that my compiler doesn't support the L sufixes (nor simmilar) which exist in the macros definitions:#define netFDSet(n,p) ((*p) |= (1L << n)) #define netFDClr(n,p) ((*p) &= ~(1L << n)) #define netFDIsSet(n,p) ((*p) & (1L << n)) #define netFDZero(p) ((*p) = 0) And I had to avoid them in some way. Do you have an idea how to avoid them?
--
Ben Combee <[EMAIL PROTECTED]>
CodeWarrior for Palm OS technical lead
Palm OS programming help @ www.palmoswerks.com
--
For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
