summaryrefslogtreecommitdiff
path: root/libbb/bb_bswap_64.c (plain)
blob: ce9d53b7f4496be6ebda5f98b07b43fa3f339e90
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)
12uint64_t FAST_FUNC bb_bswap_64(uint64_t x)
13{
14 return bswap_64(x);
15}
16#endif
17