2005-07-26 00:55:42 +00:00
|
|
|
/* byteswap.h
|
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#ifndef _BYTESWAP_H
|
|
|
|
#define _BYTESWAP_H
|
|
|
|
|
2017-02-08 17:01:34 -06:00
|
|
|
#include <bits/byteswap.h>
|
2005-07-26 00:55:42 +00:00
|
|
|
|
2016-03-14 22:11:20 -05:00
|
|
|
#define bswap_16(x) __bswap_16(x)
|
|
|
|
#define bswap_32(x) __bswap_32(x)
|
|
|
|
#define bswap_64(x) __bswap_64(x)
|
|
|
|
|
2005-07-26 00:55:42 +00:00
|
|
|
#endif /* _BYTESWAP_H */
|