From e29ed8fa7c1d20c13511e37401a984ba78b62169 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 10 Dec 1996 15:21:30 +0000 Subject: Make gcc -Wall happy; remove dummy variable (can't see where it's needed). --- Modules/sunaudiodev.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Modules/sunaudiodev.c b/Modules/sunaudiodev.c index d8b04ff..43ccf48 100644 --- a/Modules/sunaudiodev.c +++ b/Modules/sunaudiodev.c @@ -39,6 +39,14 @@ PERFORMANCE OF THIS SOFTWARE. #define SOLARIS #endif +#ifdef HAVE_UNISTD_H +#include +#endif + +#ifdef HAVE_FCNTL_H +#include +#endif + #include #include #ifdef SOLARIS @@ -69,8 +77,6 @@ static sadstatusobject *sads_alloc(); /* Forward */ static object *SunAudioError; -static int dummy_for_dl; - #define is_sadobject(v) ((v)->ob_type == &Sadtype) #define is_sadstatusobject(v) ((v)->ob_type == &Sadstatustype) -- cgit v0.12