blob: 05bb5ca7d85128c650ac99d7cc9f35c29868f1ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* 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
#include <bits/byteswap.h>
#define bswap_16(x) __bswap_16(x)
#define bswap_32(x) __bswap_32(x)
#define bswap_64(x) __bswap_64(x)
#endif /* _BYTESWAP_H */
|