mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-26 06:38:25 -05:00
11 lines
143 B
C
Executable File
11 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;
|
|
}
|