Re: [fpc-devel] Re: strange error with arm compiler whencompiling-running this code

2007-03-18 Thread Yury Sidorov
From: "Roozbeh GHolizadeh" <[EMAIL PROTECTED]> To: Sent: Sunday, March 18, 2007 10:59 AM Subject: [fpc-devel] Re: strange error with arm compiler whencompiling-running this code So any ideas a least what it could be related to? i mean if i want to fix it what should i test/l

Re: [fpc-devel] Re: strange error with arm compiler whencompiling-running this code

2007-03-14 Thread Yury Sidorov
From: "Roozbeh GHolizadeh" <[EMAIL PROTECTED]> well i am really going crazy.these c codes run ok ---testpchar.c- typedef struct { char *name; } namestruct; namestruct namestructs[1] = {{"12345"}}; int findname (char *s) { return namestructs[0].name[1]; } ---