Sign in
third-party-mirror
/
backupdr
/
017c3036efc179312f18eb3dfa01f3deadbb7aa3
/
.
/
zfs
/
module
/
zstd
/
zstd_sparc.c
blob: 463df99bd7e39fff67fd27a30df0f359d4687110 [
file
] [
log
] [
blame
]
#ifdef
__sparc__
#include
<stdint.h>
#include
<sys/byteorder.h>
#include
"include/sparc_compat.h"
uint64_t
__bswapdi2
(
uint64_t
in
)
{
return
(
BSWAP_64
(
in
));
}
uint32_t
__bswapsi2
(
uint32_t
in
)
{
return
(
BSWAP_32
(
in
));
}
#endif