X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Ffbufmode.c;h=1a324320668cd6745197e4fd125319e27673a569;hb=6a0fd2e2d7d6a7e787ada21ffbe5f8ac0e3a06f1;hp=b48cdbb3875ab0ac9f4ac01f416fa6eede01e38d;hpb=f0b08ae92b4d606bd95773c2b3c263d0b83e1172;p=gnulib.git diff --git a/lib/fbufmode.c b/lib/fbufmode.c index b48cdbb38..1a3243206 100644 --- a/lib/fbufmode.c +++ b/lib/fbufmode.c @@ -1,5 +1,5 @@ /* Retrieve information about a FILE stream. - Copyright (C) 2007-2012 Free Software Foundation, Inc. + Copyright (C) 2007-2014 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 @@ -42,7 +42,7 @@ fbufmode (FILE *fp) if (fp->_flags & _IO_UNBUFFERED) return _IONBF; return _IOFBF; -#elif defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, MacOS X, Cygwin */ +#elif defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin */ if (fp_->_flags & __SLBF) return _IOLBF; if (fp_->_flags & __SNBF) @@ -79,6 +79,10 @@ fbufmode (FILE *fp) if (fp->__linebuf) return _IOLBF; return (fp->__bufsize > 0 ? _IOFBF : _IONBF); +#elif HAVE___FLBF && HAVE___FBUFSIZE /* musl libc */ + if (__flbf (fp)) + return _IOLBF; + return (__fbufsize (fp) > 0 ? _IOFBF : _IONBF); #elif defined EPLAN9 /* Plan9 */ if (fp->flags & 2 /* LINEBUF */) return _IOLBF;