|
||||
File indexing completed on 2025-01-18 09:57:44
0001 /***********************************************************************************\ 0002 * (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations * 0003 * * 0004 * This software is distributed under the terms of the Apache version 2 licence, * 0005 * copied verbatim in the file "LICENSE". * 0006 * * 0007 * In applying this licence, CERN does not waive the privileges and immunities * 0008 * granted to it by virtue of its status as an Intergovernmental Organization * 0009 * or submit itself to any jurisdiction. * 0010 \***********************************************************************************/ 0011 #if !defined( _WIN32 ) 0012 /* It's called _swab(...) on NT, but swab(...) on egcs.... 0013 And in some version it's not even defined 0014 */ 0015 # include <unistd.h> 0016 // extern "C" void swab( const char*, char*, size_t); 0017 # define _swab( source, target, radix ) swab( source, target, radix ) 0018 #endif /* WIN32 */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |