Re: [9fans] native library: linking err

2011-03-14 Thread Charles Forsyth
PSDoc is fully declared in ps_util.c but not ps_list.c because only ps_util.c includes ps_intern.h which provides the full declaration. in ps_list.h, DLIST refers to PSDoc in the declarations of DLIST.malloc and DLIST.free, so the type of DLIST in ps_list.c (ps_list.8) is not the same as the type

[9fans] don't talk over me ....

2011-03-14 Thread Bruce Ellis
i went to a building association meeting tonight and took along my paperjamz guitar. i said at the start that if any one talks over me i was going to play it. i had to. oops my phone was on record audio. will post the audio. brucee

Re: [9fans] native library: linking err

2011-03-14 Thread Peter A. Cejchan
void *dlist_newnode(DLIST *l, int size); the code is on 'contrib/pac', see earlier in this thread, thanks, ++pac

Re: [9fans] native library: linking err

2011-03-14 Thread Lucio De Re
On Mon, Mar 14, 2011 at 11:42:13AM +0100, Peter A. Cejchan wrote: > > sorry, type is void *fn() or void *fn(void) ? You may, if I'm guessing right, have to tighten up. It's more complicated than I can get my mind around... Lucio.

Re: [9fans] native library: linking err

2011-03-14 Thread Peter A. Cejchan
sorry, type is void *fn()

Re: [9fans] native library: linking err

2011-03-14 Thread Peter A. Cejchan
dlst_freenode is declared in pslist.h, which is included in pslict.c as well as in pslist.h the type is 'void' thanks, ++pac On Mon, Mar 14, 2011 at 10:33 AM, Charles Forsyth wrote: > it means that dlst_freenode is declared as one type in the scope of pslib.c > and another different type in the

Re: [9fans] native library: linking err

2011-03-14 Thread Charles Forsyth
it means that dlst_freenode is declared as one type in the scope of pslib.c and another different type in the scope of pslist.c, which is wrong.--- Begin Message --- the error message is like this: 8l box.8 pslib.8 ... ??none?? incompatible type signetures c2d44e4 (pslib.8) and affc2df4 (pslist.8)

Re: [9fans] native library: linking err

2011-03-14 Thread Peter A. Cejchan
the error message is like this: 8l box.8 pslib.8 ... ??none?? incompatible type signetures c2d44e4 (pslib.8) and affc2df4 (pslist.8) for dlst_freenode what does it mean? ++pac