From e23a08d0c97a0cc415aaa165da840b056f93c997 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 8 Oct 2021 23:06:07 +0100 Subject: gentoo resync : 08.10.2021 --- dev-lang/icon/files/icon-9.5.1-fpoll.patch | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 dev-lang/icon/files/icon-9.5.1-fpoll.patch (limited to 'dev-lang/icon/files/icon-9.5.1-fpoll.patch') diff --git a/dev-lang/icon/files/icon-9.5.1-fpoll.patch b/dev-lang/icon/files/icon-9.5.1-fpoll.patch deleted file mode 100644 index d2a4d5f33d21..000000000000 --- a/dev-lang/icon/files/icon-9.5.1-fpoll.patch +++ /dev/null @@ -1,27 +0,0 @@ -diff --git a/ipl/cfuncs/fpoll.c b/ipl/cfuncs/fpoll.c -index 9230e18..33b8121 100644 ---- a/ipl/cfuncs/fpoll.c -+++ b/ipl/cfuncs/fpoll.c -@@ -60,12 +60,9 @@ int fpoll(int argc, descriptor *argv) /*: await data from file */ - - /* check for data already in buffer */ - /* there's no legal way to do this in C; we cheat */ --#if defined(__GLIBC__) && defined(_STDIO_USES_IOSTREAM) /* new GCC library */ -+#if defined(__GLIBC__) /* New GCC library */ - if (f->_IO_read_ptr < f->_IO_read_end) - RetArg(1); --#elif defined(__GLIBC__) /* old GCC library */ -- if (f->__bufp < f->__get_limit) -- RetArg(1); - #elif defined(_FSTDIO) /* new BSD library */ - if (f->_r > 0) - RetArg(1); -@@ -92,7 +89,7 @@ int fpoll(int argc, descriptor *argv) /*: await data from file */ - - if (r > 0) - RetArg(1); /* success */ -- else if (r == 0) -+ else if (r == 0) - Fail; /* timeout */ - else - ArgError(1, 214); /* I/O error */ -- cgit v1.2.3