source: MondoRescue/branches/3.2/mindi-busybox/libbb/bb_bswap_64.c@ 3186

Last change on this file since 3186 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
  • 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.