Kaydet (Commit) e29ed8fa authored tarafından Guido van Rossum's avatar Guido van Rossum

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

üst fb4130d1
...@@ -39,6 +39,14 @@ PERFORMANCE OF THIS SOFTWARE. ...@@ -39,6 +39,14 @@ PERFORMANCE OF THIS SOFTWARE.
#define SOLARIS #define SOLARIS
#endif #endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
#include <stropts.h> #include <stropts.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#ifdef SOLARIS #ifdef SOLARIS
...@@ -69,8 +77,6 @@ static sadstatusobject *sads_alloc(); /* Forward */ ...@@ -69,8 +77,6 @@ static sadstatusobject *sads_alloc(); /* Forward */
static object *SunAudioError; static object *SunAudioError;
static int dummy_for_dl;
#define is_sadobject(v) ((v)->ob_type == &Sadtype) #define is_sadobject(v) ((v)->ob_type == &Sadtype)
#define is_sadstatusobject(v) ((v)->ob_type == &Sadstatustype) #define is_sadstatusobject(v) ((v)->ob_type == &Sadstatustype)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment