diff options
author | 2014-12-19 22:44:58 +0000 | |
---|---|---|
committer | 2014-12-19 22:44:58 +0000 | |
commit | 9b18ffb8507e1a97fa391314bca6471c6889ce16 (patch) | |
tree | 7e7d675e5864f50aa0c89308697c6bf6e389bdfa /sys/dev/usb/if_uath.c | |
parent | sync with libc, using brnz,pt instead, should be better (diff) | |
download | wireguard-openbsd-9b18ffb8507e1a97fa391314bca6471c6889ce16.tar.xz wireguard-openbsd-9b18ffb8507e1a97fa391314bca6471c6889ce16.zip |
Use <sys/endian.h> instead of <machine/endian.h>
ok dlg@ mpi@ bcook@ millert@ miod@
Diffstat (limited to 'sys/dev/usb/if_uath.c')
-rw-r--r-- | sys/dev/usb/if_uath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_uath.c b/sys/dev/usb/if_uath.c index 636da5f8090..09b73f08978 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.63 2014/11/18 02:37:30 tedu Exp $ */ +/* $OpenBSD: if_uath.c,v 1.64 2014/12/19 22:44:59 guenther Exp $ */ /*- * Copyright (c) 2006 @@ -37,9 +37,9 @@ #include <sys/timeout.h> #include <sys/conf.h> #include <sys/device.h> +#include <sys/endian.h> #include <machine/bus.h> -#include <machine/endian.h> #include <machine/intr.h> #if NBPFILTER > 0 |