X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffbufmode.c;h=7cd9df78354f09d2406889d36dc3d70a978ee7b2;hb=fa3486514bd8f15f8eb4c49821d0356b52e5a335;hp=d5b456ff0a4374ee9ba12a024b33784ccd8a2e57;hpb=a2c5f8d99ec52594aae96afeb29e0aeb7a841872;p=gnulib.git diff --git a/lib/fbufmode.c b/lib/fbufmode.c index d5b456ff0..7cd9df783 100644 --- a/lib/fbufmode.c +++ b/lib/fbufmode.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 @@ -73,6 +73,10 @@ fbufmode (FILE *fp) if (fp->_Mode & 0x800 /* _MNBF */) return _IONBF; return _IOFBF; +#elif defined __MINT__ /* Atari FreeMiNT */ + if (fp->__linebuf) + return _IOLBF; + return (fp->__bufsize > 0 ? _IOFBF : _IONBF); #else #error "Please port gnulib fbufmode.c to your platform! Look at the setvbuf implementation." #endif