diff options
author | Mark Murray <markm@FreeBSD.org> | 1999-09-04 10:46:27 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 1999-09-04 10:46:27 +0000 |
commit | 68212f753a36e825d649d1152962f0adebc90ff9 (patch) | |
tree | e2741e2cb9740497353784e1c36bdfd437c3a0d8 /crypto | |
parent | c8d0d39eb8e0f6f2e6e12640bed84ed8c836838e (diff) | |
download | src-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.c | 4 | ||||
-rw-r--r-- | crypto/libdes/enc_writ.c | 4 |
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) |