mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-04-14 14:40:57 +00:00
base: Do not forward declare stat64 for Musl
This commit is contained in:
parent
ac45c34093
commit
a4a821d9d0
1 changed files with 2 additions and 1 deletions
|
@ -19,7 +19,8 @@
|
||||||
#include "build/build_config.h"
|
#include "build/build_config.h"
|
||||||
|
|
||||||
#if BUILDFLAG(IS_BSD) || BUILDFLAG(IS_APPLE) || BUILDFLAG(IS_NACL) || \
|
#if BUILDFLAG(IS_BSD) || BUILDFLAG(IS_APPLE) || BUILDFLAG(IS_NACL) || \
|
||||||
BUILDFLAG(IS_FUCHSIA) || (BUILDFLAG(IS_ANDROID) && __ANDROID_API__ < 21)
|
BUILDFLAG(IS_FUCHSIA) || \
|
||||||
|
(BUILDFLAG(IS_ANDROID) && __ANDROID_API__ < 21) || defined(__MUSL__)
|
||||||
struct stat;
|
struct stat;
|
||||||
namespace base {
|
namespace base {
|
||||||
typedef struct stat stat_wrapper_t;
|
typedef struct stat stat_wrapper_t;
|
||||||
|
|
Loading…
Add table
Reference in a new issue