mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
sys/param.h was manually adjusted to not define __NetBSD_Version__ since it will be defined by the compiler.
15 lines
No EOL
281 B
C
Vendored
15 lines
No EOL
281 B
C
Vendored
/* $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_ */ |