Bruno Haible via Gnulib discussion list <[email protected]> writes:

> diff --git a/lib/fseeko.c b/lib/fseeko.c
> index bfa98ee4bf..f98c1dc56c 100644
> --- a/lib/fseeko.c
> +++ b/lib/fseeko.c
> @@ -155,7 +155,7 @@ fseeko (FILE *fp, off_t offset, int whence)
>        fp_->_flags &= ~__SEOF;
>  #elif defined __EMX__               /* emx+gcc */
>        fp->_flags &= ~_IOEOF;
> -#elif defined _IOERR                /* AIX, HP-UX, IRIX, OSF/1, Solaris, 
> OpenServer, UnixWare, mingw, MSVC, NonStop Kernel, OpenVMS */
> +#elif defined _IOERR                /* AIX, HP-UX, IRIX, Solaris, 
> OpenServer, UnixWare, mingw, MSVC, NonStop Kernel, OpenVMS */
>        fp_->_flag &= ~_IOEOF;
>  #elif defined __MINT__              /* Atari FreeMiNT */
>        fp->__offset = pos;

The stdio files are a good place to see the niche platforms we have
"supported" (using that term loosely).

I think EMX is dead [1]. FreeMiNT and Plan9 seem to see activity despite
not having a release in over a decade [2] [3].

Collin

[1] https://en.wikipedia.org/wiki/EMX_(programming_environment)
[2] https://github.com/freemint/freemint
[3] https://p9f.org/

Reply via email to