X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Ffbufmode.c;h=01b0881f755454915782e34fe5d095c432d49efd;hb=258036d8674583fce2002a04afc996f18c8b8486;hp=7cd9df78354f09d2406889d36dc3d70a978ee7b2;hpb=81fe603b84b9ab4565593f0b38b30274dbb73980;p=gnulib.git diff --git a/lib/fbufmode.c b/lib/fbufmode.c index 7cd9df783..01b0881f7 100644 --- a/lib/fbufmode.c +++ b/lib/fbufmode.c @@ -1,5 +1,5 @@ /* Retrieve information about a FILE stream. - Copyright (C) 2007-2009 Free Software Foundation, Inc. + Copyright (C) 2007-2011 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 @@ -50,7 +50,7 @@ fbufmode (FILE *fp) return _IOFBF; #elif defined __EMX__ /* emx+gcc */ return fp->_flags & (_IOLBF | _IONBF | _IOFBF); -#elif defined _IOERR /* AIX, HP-UX, IRIX, OSF/1, Solaris, OpenServer, mingw */ +#elif defined _IOERR /* AIX, HP-UX, IRIX, OSF/1, Solaris, OpenServer, mingw, NonStop Kernel */ # if HAVE___FLBF /* Solaris >= 7 */ if (__flbf (fp)) return _IOLBF; @@ -78,6 +78,6 @@ fbufmode (FILE *fp) return _IOLBF; return (fp->__bufsize > 0 ? _IOFBF : _IONBF); #else - #error "Please port gnulib fbufmode.c to your platform! Look at the setvbuf implementation." +# error "Please port gnulib fbufmode.c to your platform! Look at the setvbuf implementation." #endif }