Merge branch 'Teaman-ND' into Teaman-RT
[tomato.git] / release / src / router / busybox / libbb / bb_bswap_64.c
blobce9d53b7f4496be6ebda5f98b07b43fa3f339e90
1 /*
2 * Utility routines.
4 * Copyright (C) 2010 Denys Vlasenko
6 * Licensed under GPLv2, see file LICENSE in this source tree.
7 */
9 #include "libbb.h"
11 #if !(ULONG_MAX > 0xffffffff)
12 uint64_t FAST_FUNC bb_bswap_64(uint64_t x)
14 return bswap_64(x);
16 #endif