<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From 9f84dcdef89e8950bc631ba15b286530547bec72 Mon Sep 17 00:00:00 2001
From: murray &lt;murray.calavera@protonmail.com&gt;
Date: Thu, 15 Feb 2024 10:33:25 +0000
Subject: [PATCH] Fix poll.h include path

The correct include path for poll(2) is poll.h not sys/poll.h.
sys/poll.h may not be available on some libcs or may issue a
warning. In particular this fixes a warning on musl systems.
---
 src/st-util/gdb-remote.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/src/st-util/gdb-remote.c
+++ b/src/st-util/gdb-remote.c
@@ -12,7 +12,7 @@
 #include &lt;win32_socket.h&gt;
 #else
 #include &lt;unistd.h&gt;
-#include &lt;sys/poll.h&gt;
+#include &lt;poll.h&gt;
 #endif
 
 #include "gdb-remote.h"
</pre></body></html>