diff options
author | 2014-07-13 17:39:56 +0000 | |
---|---|---|
committer | 2014-07-13 17:39:56 +0000 | |
commit | a30de4a21b5ded5844439d8db77ae37e81ff4f99 (patch) | |
tree | 7e92432baf8a02b7003fd50bfa3bc6b95d4c297b | |
parent | use mallocarray where arguments are multiplied; ok tedu (diff) | |
download | wireguard-openbsd-a30de4a21b5ded5844439d8db77ae37e81ff4f99.tar.xz wireguard-openbsd-a30de4a21b5ded5844439d8db77ae37e81ff4f99.zip |
do not need malloc.h
-rw-r--r-- | sys/crypto/criov.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/crypto/criov.c b/sys/crypto/criov.c index 21fed67ec55..2099ce19f54 100644 --- a/sys/crypto/criov.c +++ b/sys/crypto/criov.c @@ -1,4 +1,4 @@ -/* $OpenBSD: criov.c,v 1.17 2014/07/08 17:19:25 deraadt Exp $ */ +/* $OpenBSD: criov.c,v 1.18 2014/07/13 17:39:56 deraadt Exp $ */ /* * Copyright (c) 1999 Theo de Raadt @@ -29,7 +29,6 @@ #include <sys/systm.h> #include <sys/proc.h> #include <sys/errno.h> -#include <sys/malloc.h> #include <sys/kernel.h> #include <sys/mbuf.h> |