Files
swift-mirror/stdlib/public/RuntimeModule/modules/OS/OS.modulemap
Alastair Houghton 760cc57bef [Backtracing] Rename _Backtracing to Runtime.
Move the backtracing code into a new Runtime module.  This means renaming
the Swift Runtime's CMake target because otherwise there will be a name
clash.

rdar://124913332
2025-01-17 10:09:36 +00:00

14 lines
148 B
Plaintext

module OS {
module Darwin {
header "Darwin.h"
}
module Linux {
header "Linux.h"
}
module Windows {
header "Windows.h"
}
}