comparison src/audio/dsp/SDL_dspaudio.c @ 94:ae6e6b73333f

Cleaned up the OpenBSD port, thanks to Peter Valchev
author Sam Lantinga <slouken@lokigames.com>
date Sun, 08 Jul 2001 09:00:06 +0000
parents fc774f445e10
children 799bea5504e2
comparison
equal deleted inserted replaced
93:fc774f445e10 94:ae6e6b73333f
35 #include <fcntl.h> 35 #include <fcntl.h>
36 #include <signal.h> 36 #include <signal.h>
37 #include <sys/time.h> 37 #include <sys/time.h>
38 #include <sys/ioctl.h> 38 #include <sys/ioctl.h>
39 #include <sys/stat.h> 39 #include <sys/stat.h>
40 #ifdef OSS_USE_SOUNDCARD_H
41 /* This is installed on some systems */
42 #include <soundcard.h>
43 #else
44 /* This is recommended by OSS */
40 #include <sys/soundcard.h> 45 #include <sys/soundcard.h>
46 #endif
41 47
42 #include "SDL_audio.h" 48 #include "SDL_audio.h"
43 #include "SDL_error.h" 49 #include "SDL_error.h"
44 #include "SDL_audiomem.h" 50 #include "SDL_audiomem.h"
45 #include "SDL_audio_c.h" 51 #include "SDL_audio_c.h"