fix audio for mac; add devtls

This commit is contained in:
Russ Cox
2006-04-04 11:38:40 +00:00
parent 8f934bc2f7
commit 7e5c23755e
8 changed files with 2375 additions and 0 deletions

View File

@ -21,6 +21,20 @@ audiodevclose(void)
error("no audio support");
}
int
audiodevread(void *a, int n)
{
error("no audio support");
return -1;
}
int
audiodevwrite(void *a, int n)
{
error("no audio support");
return -1;
}
void
audiodevsetvol(int what, int left, int right)
{