Alan Hourihane wrote:
> +#if !defined __MINT__ /* FreeMiNT has problems seeking past end of file
> */
>    /* Test ftell beyond end of file.  */
>    ASSERT (fseek (stdin, 0, SEEK_END) == 0);
>    ch = ftell (stdin);
>    ASSERT (fseek (stdin, 10, SEEK_END) == 0);
>    ASSERT (ftell (stdin) == ch + 10);
> +#endif
>  

Applied, thanks.

Bruno


Reply via email to