mirror of https://github.com/python/cpython
Issue #26854: Android has a different include path for soundcard.h.
This commit is contained in:
parent
8d013a8d36
commit
fa935c4727
|
@ -31,7 +31,11 @@
|
|||
#endif
|
||||
|
||||
#include <sys/ioctl.h>
|
||||
#ifdef __ANDROID__
|
||||
#include <linux/soundcard.h>
|
||||
#else
|
||||
#include <sys/soundcard.h>
|
||||
#endif
|
||||
|
||||
#if defined(linux)
|
||||
|
||||
|
|
Loading…
Reference in New Issue