1 /*
2  * Utility routines.
3  *
4  * Copyright (C) 2010 Denys Vlasenko
5  *
6  * Licensed under GPLv2, see file LICENSE in this source tree.
7  */
8 
9 #include "libbb.h"
10 
11 #if !(ULONG_MAX > 0xffffffff)
bb_bswap_64(uint64_t x)12 uint64_t FAST_FUNC bb_bswap_64(uint64_t x)
13 {
14 	return bswap_64(x);
15 }
16 #endif
17