diff options
author | 2014-12-19 22:44:58 +0000 | |
---|---|---|
committer | 2014-12-19 22:44:58 +0000 | |
commit | 9b18ffb8507e1a97fa391314bca6471c6889ce16 (patch) | |
tree | 7e7d675e5864f50aa0c89308697c6bf6e389bdfa /sys/arch | |
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/arch')
-rw-r--r-- | sys/arch/octeon/dev/if_cnmac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/octeon/dev/if_cnmac.c b/sys/arch/octeon/dev/if_cnmac.c index 8499da50afa..85f67700c6e 100644 --- a/sys/arch/octeon/dev/if_cnmac.c +++ b/sys/arch/octeon/dev/if_cnmac.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_cnmac.c,v 1.19 2014/08/11 19:00:50 miod Exp $ */ +/* $OpenBSD: if_cnmac.c,v 1.20 2014/12/19 22:44:58 guenther Exp $ */ /* * Copyright (c) 2007 Internet Initiative Japan, Inc. @@ -49,6 +49,7 @@ #include <sys/stdint.h> /* uintptr_t */ #include <sys/sysctl.h> #include <sys/syslog.h> +#include <sys/endian.h> #ifdef MBUF_TIMESTAMP #include <sys/time.h> #endif @@ -65,7 +66,6 @@ #include <machine/bus.h> #include <machine/intr.h> -#include <machine/endian.h> #include <machine/octeonvar.h> #include <machine/octeon_model.h> |