1/* $NetBSD: bswap.h,v 1.2.264.1 2025/11/28 10:58:02 martin Exp $ */
2
3#ifndef _MACHINE_BSWAP_H_
4#define _MACHINE_BSWAP_H_
5
6/*
7 * GCC doesn't generate inline calls to bswapX on sparc and instead
8 * generates function calls.
9 */
10#if !defined(__clang__)
11#define __HAVE_SLOW_BSWAP_BUILTIN
12#endif
13
14#include <sys/bswap.h>
15
16#endif /* !_MACHINE_BSWAP_H_ */