Am 11.05.2002 02:21:16, schrieb Andreas Schwarz <[email protected]>: >Hi, > >i tried to compile the binutils with mingw32-msys, but I get the >following error message: > >msp430-dis.c:35: parse error before `u_short' ... >Any hints?
u_short is defined in sys/types.h on cygwin. maybe the mingw include files don't supply that type. that name seems to come from the BSD culture ;-) try replacing it with "unisgned short" by a #define or typedef. if its only that we can replace the type with a more common name it the original sourcecode. crhis
