diff options
author | 2007-09-07 19:05:05 +0000 | |
---|---|---|
committer | 2007-09-07 19:05:05 +0000 | |
commit | d3439fafe09613467a2109713f1f91b3ae5c976c (patch) | |
tree | 3874527bbad6ac7f4836e2b207e3541ab7cf79cd /sys/dev/usb/if_uath.c | |
parent | nfe supports MCP73; diff from brad, confirmed by ckuethe (diff) | |
download | wireguard-openbsd-d3439fafe09613467a2109713f1f91b3ae5c976c.tar.xz wireguard-openbsd-d3439fafe09613467a2109713f1f91b3ae5c976c.zip |
use new malloc M_ZERO flag to shrink kernel.
remove <malloc.h> from files where malloc is not used.
Diffstat (limited to 'sys/dev/usb/if_uath.c')
-rw-r--r-- | sys/dev/usb/if_uath.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/usb/if_uath.c b/sys/dev/usb/if_uath.c index 73a4d949955..af15c327ed0 100644 --- a/sys/dev/usb/if_uath.c +++ b/sys/dev/usb/if_uath.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_uath.c,v 1.28 2007/08/28 18:34:38 deraadt Exp $ */ +/* $OpenBSD: if_uath.c,v 1.29 2007/09/07 19:05:05 damien Exp $ */ /*- * Copyright (c) 2006 @@ -37,7 +37,6 @@ #include <sys/kernel.h> #include <sys/socket.h> #include <sys/systm.h> -#include <sys/malloc.h> #include <sys/timeout.h> #include <sys/conf.h> #include <sys/device.h> |