freebsd-ports/lang/icon/files/patch-ipl_cfuncs_fpoll.c

15 lines
310 B
C
Raw Normal View History

--- ipl/cfuncs/fpoll.c.orig 2009-10-27 20:39:16 UTC
+++ ipl/cfuncs/fpoll.c
@@ -37,7 +37,11 @@
int fpoll(int argc, descriptor *argv) /*: await data from file */
{
+#ifdef __DragonFly__
+ struct __FILE_public *f;
+#else
FILE *f;
+#endif
int msec, r;
fd_set fds;
struct timeval tv, *tvp;