From 9974be8e0fe8e462bf9d692b250e2f21fcfc7f8b Mon Sep 17 00:00:00 2001 From: Packit Service Date: Jan 23 2021 22:16:36 +0000 Subject: Apply patch bison-3.0.4-gnulib-fseterr.patch patch_name: bison-3.0.4-gnulib-fseterr.patch present_in_specfile: true --- diff --git a/lib/fseterr.c b/lib/fseterr.c index c8cede8..ab3e092 100644 --- a/lib/fseterr.c +++ b/lib/fseterr.c @@ -29,7 +29,7 @@ fseterr (FILE *fp) /* Most systems provide FILE as a struct and the necessary bitmask in , because they need it for implementing getc() and putc() as fast macros. */ -#if defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, Linux libc5 */ +#if defined _IO_EOF_SEEN || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, Linux libc5 */ fp->_flags |= _IO_ERR_SEEN; #elif defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin */ fp_->_flags |= __SERR;