Browse Source

r310 | jonas | 2009-11-15 10:35:10 +0100 (Sun, 15 Nov 2009) | 2 lines

  * BlockMove() and friends are not available on 64 bit (fix by Gorazd Krosl)

git-svn-id: trunk@14179 -
Jonas Maebe 15 years ago
parent
commit
d267bb3280
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/univint/src/MacMemory.pas

+ 2 - 2
packages/univint/src/MacMemory.pas

@@ -1688,7 +1688,7 @@ procedure HSetState( h: Handle; flags: SInt8 ); external name '_HSetState';
     
 ****************************************************************************}
 
-{$ifc TARGET_CPU_64}
+{$ifc not TARGET_CPU_64}
 {
  *  BlockMove()
  *  
@@ -1746,7 +1746,7 @@ procedure BlockZero( destPtr: UnivPtr; byteCount: Size ); external name '_BlockZ
  *    Mac OS X:         in version 10.0 and later
  }
 procedure BlockZeroUncached( destPtr: UnivPtr; byteCount: Size ); external name '_BlockZeroUncached';
-{$endc} {TARGET_CPU_64}
+{$endc} {not TARGET_CPU_64}
 
 
 {