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/uts.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/uts.c')
-rw-r--r-- | sys/dev/usb/uts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/uts.c b/sys/dev/usb/uts.c index d3759f797a0..d04675546e1 100644 --- a/sys/dev/usb/uts.c +++ b/sys/dev/usb/uts.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uts.c,v 1.34 2014/07/12 18:48:53 tedu Exp $ */ +/* $OpenBSD: uts.c,v 1.35 2014/12/19 22:44:59 guenther Exp $ */ /* * Copyright (c) 2007 Robert Nagy <robert@openbsd.org> @@ -26,9 +26,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> #include <dev/usb/usb.h> |