~ chicken-core (chicken-5) ba97d7aa86b3ed2507b72f36559528d4f91674c8


commit ba97d7aa86b3ed2507b72f36559528d4f91674c8
Author:     Kooda <kooda@upyum.com>
AuthorDate: Sun Feb 26 01:23:50 2017 +0100
Commit:     Kooda <kooda@upyum.com>
CommitDate: Sun Feb 26 01:23:50 2017 +0100

    Correct a wrong include from sys/poll.h to poll.h

diff --git a/posixunix.scm b/posixunix.scm
index 4964f89b..fa794f99 100644
--- a/posixunix.scm
+++ b/posixunix.scm
@@ -110,7 +110,7 @@ static C_TLS int C_wait_status;
 #endif
 
 #include <sys/mman.h>
-#include <sys/poll.h>
+#include <poll.h>
 
 #ifndef O_FSYNC
 # define O_FSYNC O_SYNC
Trap