summaryrefslogtreecommitdiff
path: root/win32/perlhost.h
diff options
context:
space:
mode:
authorDouglas Lankshear <doug@lankshear.net>1998-07-22 01:21:10 -0700
committerGurusamy Sarathy <gsar@cpan.org>1998-07-22 17:11:55 +0000
commitff95b63ed9e9faabe3ba15c12a39c2c97a712ee9 (patch)
treed0e1b48c7548b219ab2f45e04f8771df7dbc3abc /win32/perlhost.h
parente9ee4811e9cb1e626e3ac1b3b595de5ded0d4121 (diff)
downloadperl-ff95b63ed9e9faabe3ba15c12a39c2c97a712ee9.tar.gz
support optional crypt() with PERL_OBJECT
Message-Id: <000701bdb584$5b57c070$a32fa8c0@tau.Active> Subject: [PATCH 5.005 maybe] for crypt with PERL_OBJECT p4raw-id: //depot/perl@1641
Diffstat (limited to 'win32/perlhost.h')
-rw-r--r--win32/perlhost.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/win32/perlhost.h b/win32/perlhost.h
index e2d8ca70cd..842d9c3275 100644
--- a/win32/perlhost.h
+++ b/win32/perlhost.h
@@ -468,6 +468,10 @@ public:
{
win32_abort();
};
+ virtual char * Crypt(const char* clear, const char* salt)
+ {
+ return win32_crypt(clear, salt);
+ };
virtual void Exit(int status)
{
exit(status);