mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Now that Darwin is provided by the system, we no longer need to disable the system module maps in favour of our own, which also resolves a few other problems that doing that was creating. rdar://137201928
14 lines
148 B
Plaintext
14 lines
148 B
Plaintext
module OS {
|
|
module Darwin {
|
|
header "Darwin.h"
|
|
}
|
|
|
|
module Linux {
|
|
header "Linux.h"
|
|
}
|
|
|
|
module Windows {
|
|
header "Windows.h"
|
|
}
|
|
}
|