From a9294b42639beca35aba12eb21aadeb5a8c7c9cc Mon Sep 17 00:00:00 2001 From: Adrien Kunysz Date: Thu, 14 May 2026 21:22:56 +0200 Subject: [PATCH] linux: include instead of . The header is an old deprecated reference to the POSIX header. This works fine with the GNU C Library but musl libc emits a [warning](https://git.musl-libc.org/cgit/musl/commit/?id=54446d730cfb17c5f7bcf57f139458678f5066cc) when we refer to insted of . This change updates the reference on Linux to use the new name. --- src/psmove_port.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/psmove_port.h b/src/psmove_port.h index 684b112c..b29a15b3 100644 --- a/src/psmove_port.h +++ b/src/psmove_port.h @@ -41,7 +41,7 @@ #ifdef __linux # include # include -# include +# include #endif #ifdef _WIN32