From f406a207fc39cd264f3ed398ac6b6b07b49f14b1 Mon Sep 17 00:00:00 2001 From: rofl0r Date: Tue, 20 Dec 2022 14:50:08 +0000 Subject: [PATCH] VRBase: fix build error with musl libc ``` ppsspp-1.14.1/Common/VR/VRBase.cpp:94:9: error: 'exit' was not declared in this scope exit(1); ``` exit() is declared in stdlib.h, but due to namespace pollution in glibc it happens to work there. --- Common/VR/VRBase.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Common/VR/VRBase.cpp b/Common/VR/VRBase.cpp index edc9cc84da..284c33aaff 100644 --- a/Common/VR/VRBase.cpp +++ b/Common/VR/VRBase.cpp @@ -2,6 +2,7 @@ #include #include +#include #include #include