You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
558 B

  1. From 2e27c43228210eaa7aaabc2048c78645f319d080 Mon Sep 17 00:00:00 2001
  2. From: Leo <thinkabit.ukim@gmail.com>
  3. Date: Tue, 4 Feb 2020 05:42:22 +0100
  4. Subject: [PATCH] socket.c: include poll.h instead of sys/poll.h for POSIX
  5. compatibility
  6. https://pubs.opengroup.org/onlinepubs/009695399/basedefs/poll.h.html
  7. ---
  8. socket.c | 2 +-
  9. 1 file changed, 1 insertion(+), 1 deletion(-)
  10. --- a/socket.c
  11. +++ b/socket.c
  12. @@ -5,7 +5,7 @@
  13. */
  14. #include <sys/socket.h>
  15. -#include <sys/poll.h>
  16. +#include <poll.h>
  17. #include <sys/time.h>
  18. #include <sys/un.h>
  19. #include <string.h>