Add cast to realloc/malloc call to shut up AIX compiler.  (Vladimir Marangozov)
diff --git a/Modules/audioop.c b/Modules/audioop.c
index c6d9df5..50a899e 100644
--- a/Modules/audioop.c
+++ b/Modules/audioop.c
@@ -998,8 +998,8 @@
 	inrate /= d;
 	outrate /= d;
 
-	prev_i = malloc(nchannels * sizeof(int));
-	cur_i = malloc(nchannels * sizeof(int));
+	prev_i = (int *) malloc(nchannels * sizeof(int));
+	cur_i = (int *) malloc(nchannels * sizeof(int));
 	len /= size * nchannels;	/* # of frames */
 
 	if (state == Py_None) {
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
index 295b613..03f54dd 100644
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -182,8 +182,9 @@
 		f = free_list;
 		free_list = free_list->f_back;
 		if (f->f_nlocals + f->f_stacksize < extras) {
-			f = realloc(f, sizeof(PyFrameObject) +
-				       extras*sizeof(PyObject *));
+			f = (PyFrameObject *)
+				realloc(f, sizeof(PyFrameObject) +
+					extras*sizeof(PyObject *));
 			if (f == NULL)
 				return (PyFrameObject *)PyErr_NoMemory();
 		}