Remove of @extname in stdlib.

This commit is contained in:
Christoffer Lerno
2023-02-02 21:53:37 +01:00
parent 3b3dd334e0
commit 6407eb47a4
29 changed files with 136 additions and 136 deletions

View File

@@ -10,7 +10,7 @@ struct CFRange
CFIndex length;
}
extern fn CFTypeRef _macos_CFRetain(CFTypeRef cf) @extname("CFRetain");
extern fn void _macos_CFRelease(CFTypeRef cf) @extname("CFRelease");
extern fn CFTypeRef _macos_CFRetain(CFTypeRef cf) @extern("CFRetain");
extern fn void _macos_CFRelease(CFTypeRef cf) @extern("CFRelease");
$endif;