ANSI-fication
diff --git a/Modules/cryptmodule.c b/Modules/cryptmodule.c
index 746dee1..2c043f9 100644
--- a/Modules/cryptmodule.c
+++ b/Modules/cryptmodule.c
@@ -9,8 +9,7 @@
 /* Module crypt */
 
 
-static PyObject *crypt_crypt(self, args)
-	PyObject *self, *args;
+static PyObject *crypt_crypt(PyObject *self, PyObject *args)
 {
 	char *word, *salt; 
 	extern char * crypt();