> Cannot reproduce it.
>
> It looks like u_short is not defined in your system (sys/types.h).
> Define it as:
>
> typedef unsigned short u_short;

Thank you, it worked!

But now I've got another problem: my system also doesn't know kill(),
pipe() and vfork(), wait() and some other functions needed by gcc.
Is it safe to define
#define kill(x,y) 0
#define pipe(x) 0
#define vfork() 0
etc. ?
I have seen this in a patch for avr-gcc
(http://combio.de/avr/gcc-3.0-mingw32.patch).

Andreas


Reply via email to