Commit fa935c47 authored by Stefan Krah's avatar Stefan Krah

Issue #26854: Android has a different include path for soundcard.h.

parent 8d013a8d
......@@ -31,7 +31,11 @@
#endif
#include <sys/ioctl.h>
#ifdef __ANDROID__
#include <linux/soundcard.h>
#else
#include <sys/soundcard.h>
#endif
#if defined(linux)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment