Macros and PCC calls

2003-10-12 Thread Gregor N. Purdy
I have a PCC sub: .pcc_sub _char_is_white_space prototyped .param int c # Character to test (as an integer representing its ASCII code)

Re: Macros and PCC calls

2003-10-12 Thread Leopold Toetsch
Gregor N. Purdy [EMAIL PROTECTED] wrote: .pcc_call char_is_white_space ### unexpected identifier?o [snip ] .char_is_white_space(c) if test goto ... The macro better should take the test result too: .CHAR_IS_WS(c,test) Except, the line marked in the macro def above shows that parrot