diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1997-12-24 02:24:59 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1997-12-24 02:24:59 +0000 |
commit | 26618a56da4122343158bd70acec552d2e6da993 (patch) | |
tree | 4ba150d7472de986d3f220242c66b8153be08144 /win32/win32.h | |
parent | 473986ffed3c1c49ad493ce37648d9ef116e65bb (diff) | |
download | perl-26618a56da4122343158bd70acec552d2e6da993.tar.gz |
[win32] add support for crypt() via user-supplied des_fcrypt() source or library.
Update README.win32.
p4raw-id: //depot/win32/perl@385
Diffstat (limited to 'win32/win32.h')
-rw-r--r-- | win32/win32.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win32/win32.h b/win32/win32.h index a58e884fc8..7534ec5f31 100644 --- a/win32/win32.h +++ b/win32/win32.h @@ -212,6 +212,9 @@ struct thread_intern { char Wstrerror_buffer[512]; struct servent Wservent; +#ifdef HAVE_DES_FCRYPT + char Wcrypt_buffer[30]; +#endif }; #endif #endif |