mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-07 21:19:47 -04:00
16 lines
282 B
C
16 lines
282 B
C
/* $NetBSD: bswap.h,v 1.6 2014/01/29 01:36:43 matt Exp $ */
|
|
|
|
#ifndef _ARM_BSWAP_H_
|
|
#define _ARM_BSWAP_H_
|
|
|
|
#ifdef __aarch64__
|
|
#include <aarch64/byte_swap.h>
|
|
#else
|
|
#include <arm/byte_swap.h>
|
|
#endif
|
|
|
|
#define __BSWAP_RENAME
|
|
#include <sys/bswap.h>
|
|
|
|
#endif /* !_ARM_BSWAP_H_ */
|