X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffbufmode.c;h=42a305b59d8ff25598748eda1a76437d6c7eca4a;hb=fbe6ced5d2fdadeeea4194725d05a52cf3b5ebd7;hp=d5b456ff0a4374ee9ba12a024b33784ccd8a2e57;hpb=a2c5f8d99ec52594aae96afeb29e0aeb7a841872;p=gnulib.git diff --git a/lib/fbufmode.c b/lib/fbufmode.c index d5b456ff0..42a305b59 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-2010 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