Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/audio/alsa-lib/files/byteswap.h
16461 views
1
#ifndef _BYTESWAP_H
2
#define _BYTESWAP_H
3
4
#ifdef __OpenBSD__
5
#define bswap_16(x) swap16(x)
6
#define bswap_32(x) swap32(x)
7
#define bswap_64(x) swap64(x)
8
#else
9
#define bswap_16(x) bswap16(x)
10
#define bswap_32(x) bswap32(x)
11
#define bswap_64(x) bswap64(x)
12
#endif
13
#endif /* _BYTESWAP_H */
14
15