Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
stenzek
GitHub Repository: stenzek/duckstation
Path: blob/master/dep/cubeb/cmake/compile_tests/oss_is_v4.c
4247 views
1
#include <sys/soundcard.h>
2
3
#if SOUND_VERSION < 0x040000
4
# error "OSSv4 is not available in sys/soundcard.h"
5
#endif
6
7
int main()
8
{
9
return 0;
10
}
11
12