Make gcc -Wall happy; remove dummy variable (can't see where it's needed).

This commit is contained in:
Guido van Rossum 1996-12-10 15:21:30 +00:00
parent fb4130d1f1
commit e29ed8fa7c
1 changed files with 8 additions and 2 deletions

View File

@ -39,6 +39,14 @@ PERFORMANCE OF THIS SOFTWARE.
#define SOLARIS
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
#include <stropts.h>
#include <sys/ioctl.h>
#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)