diff options
author | Elizabeth Myers <elizabeth@interlinked.me> | 2018-04-03 03:24:45 -0500 |
---|---|---|
committer | Elizabeth Myers <elizabeth@interlinked.me> | 2018-04-03 03:24:45 -0500 |
commit | c6e069a2ce8fa0ffe8b52228c6fd510342af6e9d (patch) | |
tree | 4bed4ac9d8e1232bedcc1afba167f3afd634a9c6 | |
parent | 5d1b366c8997384ff1d9e82131397388e69def3b (diff) | |
download | gcompat-c6e069a2ce8fa0ffe8b52228c6fd510342af6e9d.tar.gz gcompat-c6e069a2ce8fa0ffe8b52228c6fd510342af6e9d.tar.bz2 gcompat-c6e069a2ce8fa0ffe8b52228c6fd510342af6e9d.tar.xz gcompat-c6e069a2ce8fa0ffe8b52228c6fd510342af6e9d.zip |
socket: fix build
-rw-r--r-- | libgcompat/socket.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libgcompat/socket.c b/libgcompat/socket.c index 49da09d..9919ee0 100644 --- a/libgcompat/socket.c +++ b/libgcompat/socket.c @@ -1,5 +1,6 @@ #include <assert.h> /* assert */ #include <stddef.h> /* NULL */ +#include <poll.h> /* poll, pollfd, nfds_t */ #include <sys/socket.h> /* recv, recvfrom */ /** |