mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
...and explicitly mark symbols we export, either for use by executables or for runtime-stdlib interaction. Until the stdlib supports resilience we have to allow programs to link to these SPI symbols.
16 lines
343 B
Plaintext
16 lines
343 B
Plaintext
module SwiftShims {
|
|
header "CoreFoundationShims.h"
|
|
header "FoundationShims.h"
|
|
header "GlobalObjects.h"
|
|
header "HeapObject.h"
|
|
header "LibcShims.h"
|
|
header "RefCount.h"
|
|
header "RuntimeShims.h"
|
|
header "RuntimeStubs.h"
|
|
header "SwiftStddef.h"
|
|
header "SwiftStdint.h"
|
|
header "UnicodeShims.h"
|
|
header "Visibility.h"
|
|
export *
|
|
}
|