Patch #103926: fix two warnings from Tru64's compiler
diff --git a/Modules/dlmodule.c b/Modules/dlmodule.c
index b7cd35b..bb49a50 100644
--- a/Modules/dlmodule.c
+++ b/Modules/dlmodule.c
@@ -86,7 +86,9 @@
 				"function name must be a string");
 		return NULL;
 	}
-	func = dlsym(xp->dl_handle, PyString_AsString(name));
+	func = (long (*)(long, long, long, long, long, 
+                         long, long, long, long, long)) 
+          dlsym(xp->dl_handle, PyString_AsString(name));
 	if (func == NULL) {
 		PyErr_SetString(PyExc_ValueError, dlerror());
 		return NULL;