Files
clang-p2996/lldb/test/API/lang/objc/modules-incomplete/module.modulemap
Dave Lee a58eefa115 [lldb] Rename test module.map files to module.modulemap (NFC)
The name `module.modulemap` is convention.

> Clang will also search for a file named `module.map`. This behavior is deprecated and
> we plan to eventually remove it.
2023-04-06 14:00:21 -07:00

10 lines
103 B
Plaintext

module myModule {
header "myModule.h"
export *
}
module minmax {
header "minmax.h"
export *
}