From 1aada03f08a2cea6210da956efaea388431154cc Mon Sep 17 00:00:00 2001 From: klzgrad Date: Wed, 6 Oct 2021 15:30:54 +0800 Subject: [PATCH] musl: third_party/lss: Fix missing sgidefs.h --- src/third_party/lss/linux_syscall_support.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/third_party/lss/linux_syscall_support.h b/src/third_party/lss/linux_syscall_support.h index 2f220f15f9..d2dd77e0d1 100644 --- a/src/third_party/lss/linux_syscall_support.h +++ b/src/third_party/lss/linux_syscall_support.h @@ -120,7 +120,7 @@ extern "C" { #ifdef __mips__ /* Include definitions of the ABI currently in use. */ -#ifdef __ANDROID__ +#if defined(__ANDROID__) || defined(__MUSL__) /* Android doesn't have sgidefs.h, but does have asm/sgidefs.h, * which has the definitions we need. */