summaryrefslogtreecommitdiffstats
path: root/Modules/cryptmodule.c
diff options
context:
space:
mode:
authorPeter Schneider-Kamp <nowonder@nowonder.de>2000-07-10 09:57:19 (GMT)
committerPeter Schneider-Kamp <nowonder@nowonder.de>2000-07-10 09:57:19 (GMT)
commita788a7f0fba47538879d7329fd340437377444f2 (patch)
tree5c05522d8eaec0c39f0d59e6a6677a842e46f350 /Modules/cryptmodule.c
parentfe74263cec2c818ee957a67ac62019942ef7eae7 (diff)
downloadcpython-a788a7f0fba47538879d7329fd340437377444f2.zip
cpython-a788a7f0fba47538879d7329fd340437377444f2.tar.gz
cpython-a788a7f0fba47538879d7329fd340437377444f2.tar.bz2
ANSI-fication
Diffstat (limited to 'Modules/cryptmodule.c')
-rw-r--r--Modules/cryptmodule.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/cryptmodule.c b/Modules/cryptmodule.c
index 746dee1..2c043f94 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();