ifdef out redundant declaration of crypt(3); we don't need it.

This commit is contained in:
christos 2001-02-04 18:01:48 +00:00
parent 28473bf6be
commit 9b24735fd3
1 changed files with 2 additions and 0 deletions

View File

@ -202,6 +202,7 @@ char *DES_LIB_FUNCTION des_fcrypt(const char *buf,const char *salt, char *ret);
#ifdef PERL5
char *des_crypt(const char *buf,const char *salt);
#else
#ifndef __NetBSD__
/* some stupid compilers complain because I have declared char instead
* of const char */
#ifdef HEADER_DES_LOCL_H
@ -210,6 +211,7 @@ char *DES_LIB_FUNCTION crypt(const char *buf,const char *salt);
char *crypt();
#endif
#endif
#endif
void DES_LIB_FUNCTION des_ofb_encrypt(unsigned char *in,unsigned char *out,
int numbits,long length,des_key_schedule schedule,des_cblock *ivec);
void DES_LIB_FUNCTION des_pcbc_encrypt(des_cblock *input,des_cblock *output,long length,