summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>1999-09-04 10:46:27 +0000
committermarkm <markm@FreeBSD.org>1999-09-04 10:46:27 +0000
commitd7d8526858a62a78e0a5e4c994a48b72573dc6e9 (patch)
tree071e1cf7eeed90310126fa26de897bd0fb695153 /crypto
parent1f1e44eabea5e3da90f36ed71187a3e3866119dc (diff)
downloadFreeBSD-src-d7d8526858a62a78e0a5e4c994a48b72573dc6e9.zip
FreeBSD-src-d7d8526858a62a78e0a5e4c994a48b72573dc6e9.tar.gz
Add some includes to shut up warnings.
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 2d79d31..ed3ee82 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 cf61382..128b151 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)
OpenPOWER on IntegriCloud