> 1. You ARE doing a libc call, because you are linking to libc, and you
> don't have LibC.prc installed.  This is the only way you can get that
> particular error.

  actually.. i was not doing anything like that.

  no strings, no library routines.. all i was doing was basic 
  passing of 'struct' objects.

  i had the following prototype:

---
    typdef struct
    {
      Byte x;
      Byte y;
    } MyObject, *MyObjectPtr;

    void draw(MyObject o) {
      // use 'o'
    }
---

  and i replaced it with:

---
    void draw(MyObjectPtr o) {
      // use "*o"
    }
---

  and it got rid of the message. my 'C' understanding tells
  me that this should be allowed - and it should not crash.
  but maybe when i write my program in the normal 'gcc' -
  verses the 'palmos-gcc' something changes?

  interesting? i gave up caring.. now i just pass pointers,
  it is more efficient anyhow - especially on the stack.

  cheers.

az. 
--
Aaron Ardiri 
Lecturer                       http://www.hig.se/~ardiri/
University-College i G�vle     mailto:[EMAIL PROTECTED]
SE 801 76 G�vle SWEDEN       
Tel: +46 26 64 87 38           Fax: +46 26 64 87 88
Mob: +46 70 352 8192           A/H: +46 26 10 16 11

Reply via email to