diff options
| author | Thomas Wouters <thomas@python.org> | 2000-07-22 23:57:55 +0000 |
|---|---|---|
| committer | Thomas Wouters <thomas@python.org> | 2000-07-22 23:57:55 +0000 |
| commit | bd4bc4e9e947617def66780efbbea4eb08990e56 (patch) | |
| tree | 7130e24f3bf2919bf47ff717ac674023816369c7 /Modules/cryptmodule.c | |
| parent | 3b6448fbae16564484a40efa7f418fba02755625 (diff) | |
| download | cpython-git-bd4bc4e9e947617def66780efbbea4eb08990e56.tar.gz | |
Even more ANSIfication: fix as many function pointers and declarations as
possible.
Diffstat (limited to 'Modules/cryptmodule.c')
| -rw-r--r-- | Modules/cryptmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cryptmodule.c b/Modules/cryptmodule.c index 770965e505..d3e0793192 100644 --- a/Modules/cryptmodule.c +++ b/Modules/cryptmodule.c @@ -12,7 +12,7 @@ static PyObject *crypt_crypt(PyObject *self, PyObject *args) { char *word, *salt; - extern char * crypt(); + extern char * crypt(const char *, const char *); if (!PyArg_Parse(args, "(ss)", &word, &salt)) { return NULL; |
