source: MondoRescue/branches/2.2.9/mindi-busybox/libbb/bb_bswap_64.c@ 3320

Last change on this file since 3320 was 3320, checked in by Bruno Cornec, 9 years ago
  • Re-add (thanks git BTW) the 2.2.9 branch which had been destroyed in the move to 3.0
  • Property svn:eol-style set to native
File size: 260 bytes
Line 
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
Note: See TracBrowser for help on using the repository browser.