pineapple/externals/cubeb/cmake/compile_tests/oss_is_v4.c
2020-12-28 15:15:37 +00:00

10 lines
143 B
C
Executable file

#include <sys/soundcard.h>
#if SOUND_VERSION < 0x040000
# error "OSSv4 is not available in sys/soundcard.h"
#endif
int main()
{
return 0;
}