ANSI-fication (fixed on parameter list I messed up in the patch)
diff --git a/Modules/sunaudiodev.c b/Modules/sunaudiodev.c
index 89a59b7..5ef2c06 100644
--- a/Modules/sunaudiodev.c
+++ b/Modules/sunaudiodev.c
@@ -60,8 +60,7 @@
 
 
 static sadobject *
-newsadobject(arg)
-	PyObject *arg;
+newsadobject(PyObject *args)
 {
 	sadobject *xp;
 	int fd;
@@ -72,7 +71,7 @@
 	char* opendev;
 
 	/* Check arg for r/w/rw */
-	if (!PyArg_Parse(arg, "s", &mode))
+	if (!PyArg_Parse(args, "s", &mode))
 		return NULL;
 	if (strcmp(mode, "r") == 0)
 		imode = 0;
@@ -133,17 +132,14 @@
 /* Sad methods */
 
 static void
-sad_dealloc(xp)
-	sadobject *xp;
+sad_dealloc(sadobject *xp)
 {
         close(xp->x_fd);
 	PyObject_Del(xp);
 }
 
 static PyObject *
-sad_read(self, args)
-        sadobject *self;
-        PyObject *args;
+sad_read(sadobject *self, PyObject *args)
 {
         int size, count;
 	char *cp;
@@ -180,9 +176,7 @@
 }
 
 static PyObject *
-sad_write(self, args)
-        sadobject *self;
-        PyObject *args;
+sad_write(sadobject *self, PyObject *args)
 {
         char *cp;
 	int count, size;
@@ -206,9 +200,7 @@
 }
 
 static PyObject *
-sad_getinfo(self, args)
-	sadobject *self;
-	PyObject *args;
+sad_getinfo(sadobject *self, PyObject *args)
 {
 	sadstatusobject *rv;
 
@@ -226,9 +218,7 @@
 }
 
 static PyObject *
-sad_setinfo(self, arg)
-	sadobject *self;
-	sadstatusobject *arg;
+sad_setinfo(sadobject *self, sadstatusobject *arg)
 {
 	if (!is_sadstatusobject(arg)) {
 		PyErr_SetString(PyExc_TypeError,
@@ -244,9 +234,7 @@
 }
 
 static PyObject *
-sad_ibufcount(self, args)
-	sadobject *self;
-	PyObject *args;
+sad_ibufcount(sadobject *self, PyObject *args)
 {
 	audio_info_t ai;
     
@@ -260,9 +248,7 @@
 }
 
 static PyObject *
-sad_obufcount(self, args)
-	sadobject *self;
-	PyObject *args;
+sad_obufcount(sadobject *self, PyObject *args)
 {
 	audio_info_t ai;
     
@@ -280,9 +266,7 @@
 }
 
 static PyObject *
-sad_drain(self, args)
-	sadobject *self;
-	PyObject *args;
+sad_drain(sadobject *self, PyObject *args)
 {
     
 	if (!PyArg_Parse(args, ""))
@@ -297,9 +281,7 @@
 
 #ifdef SOLARIS
 static PyObject *
-sad_getdev(self, args)
-	sadobject *self;
-	PyObject *args;
+sad_getdev(sadobject *self, PyObject *args)
 {
 	struct audio_device ad;
 
@@ -314,9 +296,7 @@
 #endif
 
 static PyObject *
-sad_flush(self, args)
-	sadobject *self;
-	PyObject *args;
+sad_flush(sadobject *self, PyObject *args)
 {
     
 	if (!PyArg_Parse(args, ""))
@@ -330,9 +310,7 @@
 }
 
 static PyObject *
-sad_close(self, args)
-	sadobject *self;
-	PyObject *args;
+sad_close(sadobject *self, PyObject *args)
 {
     
 	if (!PyArg_Parse(args, ""))
@@ -346,9 +324,7 @@
 }
 
 static PyObject *
-sad_fileno(self, args)
-	sadobject *self;
-	PyObject *args;
+sad_fileno(sadobject *self, PyObject *args)
 {
 	if (!PyArg_Parse(args, ""))
 		return NULL;
@@ -376,9 +352,7 @@
 };
 
 static PyObject *
-sad_getattr(xp, name)
-	sadobject *xp;
-	char *name;
+sad_getattr(sadobject *xp, char *name)
 {
 	if (xp->x_isctl)
 		return Py_FindMethod(sad_methods+CTL_METHODS,
@@ -395,8 +369,7 @@
 }
 
 static void
-sads_dealloc(xp)
-	sadstatusobject *xp;
+sads_dealloc(sadstatusobject *xp)
 {
 	PyMem_DEL(xp);
 }
@@ -446,18 +419,13 @@
 };
 
 static PyObject *
-sads_getattr(xp, name)
-	sadstatusobject *xp;
-	char *name;
+sads_getattr(sadstatusobject *xp, char *name)
 {
 	return PyMember_Get((char *)&xp->ai, sads_ml, name);
 }
 
 static int
-sads_setattr(xp, name, v)
-	sadstatusobject *xp;
-	char *name;
-	PyObject *v;
+sads_setattr(sadstatusobject *xp, char *name, PyObject *v)
 {
 
 	if (v == NULL) {
@@ -503,9 +471,7 @@
 /* ------------------------------------------------------------------- */
 
 static PyObject *
-sadopen(self, args)
-	PyObject *self;
-	PyObject *args;
+sadopen(PyObject *self, PyObject *args)
 {
 	return (PyObject *)newsadobject(args);
 }