Hi Bruno, Just getting back to the fseeko() test. What exactly is meant to be tested here ?
Can you explain as I don't quite understand why this is needed. > > --- lib/fseeko.c.orig 2009-02-28 21:09:16.000000000 +0100 > > +++ lib/fseeko.c 2009-02-28 20:58:14.000000000 +0100 > > @@ -82,6 +82,11 @@ > > if ((fp->_Mode & _MWRITE ? fp->_Next == fp->_Buf : fp->_Next == > > fp->_Rend) > > && fp->_Rback == fp->_Back + sizeof (fp->_Back) > > && fp->_Rsave == NULL) > > +#elif defined __MINT__ /* Atari FreeMiNT */ > > + if (fp->__bufp == fp->__buffer > > + && fp->__get_limit == fp->__bufp > > + && fp->__put_limit == fp->__bufp > > + && !fp->__pushed_back) > > #else > > I can try this one. Alan.