-}
-
-/* Implemented as an assembly alias for i386 and linker alias for ppc */
-#undef OSCompareAndSwapPtr
-Boolean OSCompareAndSwapPtr(void *oldValue, void *newValue,
- void * volatile *address)
-{
-#if __LP64__
- return OSCompareAndSwap64((UInt64)oldValue, (UInt64)newValue,
- (volatile UInt64 *)address);
-#else
- return OSCompareAndSwap((UInt32)oldValue, (UInt32)newValue,
- (volatile UInt32 *)address);
-#endif
-}
-#endif
-
-#ifndef __ppc__
-/* Implemented as assembly for ppc */