diff options
Diffstat (limited to 'Modules/_cryptmodule.c')
| -rw-r--r-- | Modules/_cryptmodule.c | 7 | 
1 files changed, 0 insertions, 7 deletions
diff --git a/Modules/_cryptmodule.c b/Modules/_cryptmodule.c index 51007889bf..62aa06cd85 100644 --- a/Modules/_cryptmodule.c +++ b/Modules/_cryptmodule.c @@ -5,19 +5,12 @@  #include <sys/types.h> -#ifdef __VMS -#include <openssl/des.h> -#endif -  /* Module crypt */  static PyObject *crypt_crypt(PyObject *self, PyObject *args)  {      char *word, *salt; -#ifndef __VMS -    extern char * crypt(const char *, const char *); -#endif      if (!PyArg_ParseTuple(args, "ss:crypt", &word, &salt)) {          return NULL;  | 
