aboutsummaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>1999-09-04 10:46:27 +0000
committerMark Murray <markm@FreeBSD.org>1999-09-04 10:46:27 +0000
commit68212f753a36e825d649d1152962f0adebc90ff9 (patch)
treee2741e2cb9740497353784e1c36bdfd437c3a0d8 /crypto
parentc8d0d39eb8e0f6f2e6e12640bed84ed8c836838e (diff)
downloadsrc-68212f753a36e825d649d1152962f0adebc90ff9.tar.gz
src-68212f753a36e825d649d1152962f0adebc90ff9.zip
Add some includes to shut up warnings.
Notes
Notes: svn path=/head/; revision=50885
Diffstat (limited to 'crypto')
-rw-r--r--crypto/libdes/enc_read.c4
-rw-r--r--crypto/libdes/enc_writ.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/crypto/libdes/enc_read.c b/crypto/libdes/enc_read.c
index 2d79d3119862..ed3ee82f8699 100644
--- a/crypto/libdes/enc_read.c
+++ b/crypto/libdes/enc_read.c
@@ -56,8 +56,12 @@
* [including the GNU Public Licence.]
*/
+#include <sys/types.h>
+#include <sys/uio.h>
#include <stdio.h>
#include <errno.h>
+#include <unistd.h>
+
#include "des_locl.h"
/* This has some uglies in it but it works - even over sockets. */
diff --git a/crypto/libdes/enc_writ.c b/crypto/libdes/enc_writ.c
index cf6138271489..128b151a6392 100644
--- a/crypto/libdes/enc_writ.c
+++ b/crypto/libdes/enc_writ.c
@@ -56,8 +56,12 @@
* [including the GNU Public Licence.]
*/
+#include <sys/types.h>
+#include <sys/uio.h>
#include <errno.h>
#include <time.h>
+#include <unistd.h>
+
#include "des_locl.h"
int des_enc_write(fd, buf, len, sched, iv)