X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffreadahead.c;h=f4b5ed70292b9b9f00346eb8b3aeae2880dc5de8;hb=8def010e77c2bace5391a1cda45e158d9e0a3f7d;hp=25bfc1ee817a5e3be53056c06ec1b024a7bbd91c;hpb=a2c5f8d99ec52594aae96afeb29e0aeb7a841872;p=gnulib.git diff --git a/lib/freadahead.c b/lib/freadahead.c index 25bfc1ee8..f4b5ed702 100644 --- a/lib/freadahead.c +++ b/lib/freadahead.c @@ -1,5 +1,5 @@ /* Retrieve information about a FILE stream. - Copyright (C) 2007-2008 Free Software Foundation, Inc. + Copyright (C) 2007-2009 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -70,6 +70,12 @@ freadahead (FILE *fp) + (fp->_Mode & 0x4000 /* _MBYTE */ ? (fp->_Back + sizeof (fp->_Back)) - fp->_Rback : 0); +#elif defined __MINT__ /* Atari FreeMiNT */ + if (!fp->__mode.__read) + return 0; + return (fp->__pushed_back + ? fp->__get_limit - fp->__pushback_bufp + 1 + : fp->__get_limit - fp->__bufp); #elif defined SLOW_BUT_NO_HACKS /* users can define this */ abort (); return 0;