Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-03-19 15:13:44 +0300
committerUlf Möller <ulf@openssl.org>2000-03-19 15:13:44 +0300
commit48b83a250445b171fb2477102ec28451c9dc59b4 (patch)
tree155b77c2d606ea7168409d2aa5a8b2581d1bdb25 /crypto/des/des.c
parente55818b9d3c472bfdbcdb6becd9d2c2201840f2f (diff)
Integrate podd.h sk.h into set_key.c
Diffstat (limited to 'crypto/des/des.c')
-rw-r--r--crypto/des/des.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/crypto/des/des.c b/crypto/des/des.c
index 91d7153b34..0197489c9e 100644
--- a/crypto/des/des.c
+++ b/crypto/des/des.c
@@ -58,6 +58,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#ifndef MSDOS
#ifndef VMS
#include <openssl/opensslconf.h>
@@ -69,7 +70,7 @@
#include <math.h>
#endif /* __DECC */
#endif /* VMS */
-#else
+#else /* MSDOS */
#include <io.h>
#endif
@@ -88,10 +89,6 @@
#include <openssl/des.h>
#include <openssl/rand.h>
-#if defined(__STDC__) || defined(VMS) || defined(M_XENIX) || defined(MSDOS)
-#include <string.h>
-#endif
-
void usage(void);
void doencryption(void);
int uufwrite(unsigned char *data, int size, unsigned int num, FILE *fp);