summaryrefslogblamecommitdiffstats
path: root/src/include/byteswap.h
blob: 72b5a01db6a8144022f1a27f9184ed882628b245 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                    
                                     

                                     
                                     



                                     
#ifndef ETHERBOOT_BYTESWAP_H
#define ETHERBOOT_BYTESWAP_H

#include "endian.h"
#include "bits/byteswap.h"

#if __BYTE_ORDER == __LITTLE_ENDIAN
#include "little_bswap.h"
#endif
#if __BYTE_ORDER == __BIG_ENDIAN
#include "big_bswap.h"
#endif

/* Make routines available to all */
#define swap64(x)	__bswap_64(x)
#define swap32(x)	__bswap_32(x)
#define swap16(x)	__bswap_16(x)
#define bswap_64(x)	__bswap_64(x)
#define bswap_32(x)	__bswap_32(x)
#define bswap_16(x)	__bswap_16(x)
	
#endif /* ETHERBOOT_BYTESWAP_H */