Chameleon

Chameleon Commit Details

Date:2011-08-07 07:12:15 (12 years 8 months ago)
Author:Evan Lojewski
Commit:1316
Parents: 1315
Message:Fix macho-to-xcoff on x86_64 hosts
Changes:
M/branches/xZenu/src/util/macho-to-xcoff.c

File differences

branches/xZenu/src/util/macho-to-xcoff.c
4646
4747
4848
49
49
5050
5151
5252
typedef unsigned short UInt16;
typedef unsigned long UInt32;
#ifdef __i386__
#if defined(__i386__) || defined(__x86_64__)
#define SWAPL(value) ( (((value) >> 24) & 0xff) | \
(((value) >> 8) & 0xff00) | \
(((value) << 8) & 0xff0000) | \

Archive Download the corresponding diff file

Revision: 1316