Skip to content

Commit 1cf2753

Browse files
authored
Update CFRuntime.h
1 parent a3e72a9 commit 1cf2753

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CoreFoundation/Base.subproj/CFRuntime.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,14 +212,14 @@ typedef struct __CFRuntimeBase {
212212

213213
typedef struct __CFRuntimeBase {
214214
uintptr_t _cfisa;
215-
#if __LP64__
215+
#if defined(__LP64__) || defined(__LLP64__)
216216
_Atomic(uint64_t) _cfinfoa;
217217
#else
218218
_Atomic(uint32_t) _cfinfoa;
219219
#endif
220220
} CFRuntimeBase;
221221

222-
#if __LP64__
222+
#if defined(__LP64__) || defined(__LLP64__)
223223
#define INIT_CFRUNTIME_BASE(...) {0, 0x0000000000000080ULL}
224224
#else
225225
#define INIT_CFRUNTIME_BASE(...) {0, 0x00000080UL}

0 commit comments

Comments
 (0)