File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 11
11
//===----------------------------------------------------------------------===//
12
12
13
13
module visualc [system] {
14
- export *
15
-
16
14
module SAL {
17
15
header "sal.h"
16
+ export *
18
17
}
19
18
20
19
module vcruntime {
21
20
header "vcruntime.h"
22
- export SAL
21
+ export *
23
22
}
24
23
25
24
module setjmp {
26
25
header "setjmp.h"
26
+ export *
27
27
}
28
28
29
29
module stdint {
30
30
header "stdint.h"
31
+ export *
31
32
}
32
33
}
33
34
Original file line number Diff line number Diff line change 24
24
25
25
// Clang has been defining __INTxx_TYPE__ macros for a long time.
26
26
// __UINTxx_TYPE__ are defined only since Clang 3.5.
27
- #if !defined(__APPLE__) && (defined(_MSC_VER) && !defined(__clang__)) && !defined(__linux__) && !defined(__OpenBSD__)
27
+ #if !defined(__APPLE__) && !defined(__linux__) && !defined(__OpenBSD__)
28
28
#include < stdint.h>
29
29
typedef int64_t __swift_int64_t ;
30
30
typedef uint64_t __swift_uint64_t ;
You can’t perform that action at this time.
0 commit comments