summaryrefslogtreecommitdiffstats
path: root/Modules/_cryptmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/_cryptmodule.c')
-rw-r--r--Modules/_cryptmodule.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/Modules/_cryptmodule.c b/Modules/_cryptmodule.c
index 5100788..62aa06c 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;